Skip to content

Commit

Permalink
Merge pull request #118 from DiamondLightSource/fix-ci-syntax
Browse files Browse the repository at this point in the history
Fix CI env variable syntax
  • Loading branch information
abigailalexander authored May 29, 2024
2 parents c189ae7 + 8b7824f commit 696b7ce
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 696b7ce

Please sign in to comment.