Skip to content

Commit

Permalink
BUG: Fix github actions variable ref
Browse files Browse the repository at this point in the history
  • Loading branch information
tbirdso committed Mar 30, 2022
1 parent 4c32c98 commit a1f279d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ jobs:
python -m pip install --ignore-installed six
python -m pip install ipython
echo "Workspace: ${{ GITHUB_WORKSPACE }}"
echo "Workspace: ${{ github.workspace }}"
- name: Remove Duplicate Declaration Warnings
run: |
Expand Down Expand Up @@ -364,9 +364,9 @@ jobs:
- name: Unpack site
shell: bash
run: |
mkdir ${{ GITHUB_WORKSPACE }}/site
echo "Unpack to ${{ GITHUB_WORKSPACE }}/site"
tar --strip-components=1 -xf /home/runner/work/bld/ITKEx-build/ITKSphinxExamples-*-html.tar.gz -C ${{ GITHUB_WORKSPACE }}/site
mkdir ${{ github.workspace }}/site
echo "Unpack to ${{ github.workspace }}/site"
tar --strip-components=1 -xf /home/runner/work/bld/ITKEx-build/ITKSphinxExamples-*-html.tar.gz -C ${{ github.workspace }}/site
- name: Deploy website to Fleek
uses: fleekhq/action-deploy@v1
Expand Down

0 comments on commit a1f279d

Please sign in to comment.