Skip to content

Commit

Permalink
fix version tag
Browse files Browse the repository at this point in the history
  • Loading branch information
amoffat committed Oct 9, 2024
1 parent 4c5a09f commit 4c34340
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ jobs:

- name: Get current version
id: get_version
run: echo "version=$(sed -n 's/^version = "\(.*\)"/\1/p' pyproject.toml)" >> $GITHUB_ENV
run: |
version=$(sed -n 's/^version = "\(.*\)"/\1/p' pyproject.toml)
echo "version=$version" >> "$GITHUB_OUTPUT"
- name: Set up Python
uses: actions/setup-python@v5
Expand Down

0 comments on commit 4c34340

Please sign in to comment.