Skip to content

Commit

Permalink
fix invalid version being passed to pyproject through workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-thompson committed Jan 21, 2024
1 parent 9603cfe commit 0e50c2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
pip install build
- name: Extract tag name
id: tag
run: echo "TAG_NAME={$(echo $GITHUB_REF | cut -d / -f 3)}" >> $GITHUB_OUTPUT
run: echo "TAG_NAME=$(echo $GITHUB_REF | cut -d / -f 3)" >> $GITHUB_OUTPUT
- name: Update version in pyproject.toml
env:
TAG_NAME: ${{ steps.tag.outputs.TAG_NAME }}
Expand Down

0 comments on commit 0e50c2e

Please sign in to comment.