Skip to content

Commit

Permalink
Fix CI env variable syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
abigailalexander committed May 29, 2024
1 parent c189ae7 commit 8b7824f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
# Fetch latest tag on this branch if manually triggered
- name: Fetch latest tag
if: github.event_name == 'workflow_dispatch'
run: echo "LATEST_TAG=git tag | sort --version-sort | tail -n1" >> $GITHUB_ENV
run: echo "LATEST_TAG=$(git tag | sort --version-sort | tail -n1)" >> $GITHUB_ENV

- name: Download wheel and lockfiles
uses: actions/download-artifact@v3
Expand Down

0 comments on commit 8b7824f

Please sign in to comment.