Skip to content

Commit a1f279d

Browse files
committed
BUG: Fix github actions variable ref
1 parent 4c32c98 commit a1f279d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ jobs:
290290
python -m pip install --ignore-installed six
291291
python -m pip install ipython
292292
293-
echo "Workspace: ${{ GITHUB_WORKSPACE }}"
293+
echo "Workspace: ${{ github.workspace }}"
294294
295295
- name: Remove Duplicate Declaration Warnings
296296
run: |
@@ -364,9 +364,9 @@ jobs:
364364
- name: Unpack site
365365
shell: bash
366366
run: |
367-
mkdir ${{ GITHUB_WORKSPACE }}/site
368-
echo "Unpack to ${{ GITHUB_WORKSPACE }}/site"
369-
tar --strip-components=1 -xf /home/runner/work/bld/ITKEx-build/ITKSphinxExamples-*-html.tar.gz -C ${{ GITHUB_WORKSPACE }}/site
367+
mkdir ${{ github.workspace }}/site
368+
echo "Unpack to ${{ github.workspace }}/site"
369+
tar --strip-components=1 -xf /home/runner/work/bld/ITKEx-build/ITKSphinxExamples-*-html.tar.gz -C ${{ github.workspace }}/site
370370
371371
- name: Deploy website to Fleek
372372
uses: fleekhq/action-deploy@v1

0 commit comments

Comments
 (0)