Skip to content

Commit

Permalink
Fix environment variable reference.
Browse files Browse the repository at this point in the history
Signed-off-by: Wade Barnes <wade@neoterictech.ca>
  • Loading branch information
WadeBarnes committed Oct 19, 2022
1 parent 1706499 commit 19ade23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/workflow-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ runs:
echo "publish=false" >> $GITHUB_ENV
fi
echo "{{ env.publish }}" >> $GITHUB_OUTPUT
echo "${{ env.publish }}" >> $GITHUB_OUTPUT
echo "::group::DEBUG"
echo "CACHE_KEY_BUILD=${{ hashFiles('.github/workflows/build/Dockerfile.ubuntu-2004') }}"
echo "UBUNTU_VERSION=ubuntu-2004"
echo "distribution=focal"
echo "publish = {{ env.publish }}"
echo "publish = ${{ env.publish }}"
echo "::endgroup::"

0 comments on commit 19ade23

Please sign in to comment.