Skip to content

Commit

Permalink
build(version-check): use poetry not python
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-makerx committed Dec 19, 2022
1 parent 3bc7e93 commit f81594b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
poetry run semantic-release \
--prerelease \
publish
gh release edit --prerelease "v$(python run semantic-release print-version --current)"
gh release edit --prerelease "v$(poetry run semantic-release print-version --current)"
# --define=upload_to_repository=true \
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -94,7 +94,7 @@ jobs:
--define=prerelease_tag=beta+${{ steps.get_branch.outputs.branch }} \
--define=branch=${{ steps.get_branch.outputs.branch }} \
publish
gh release edit --prerelease "v$(python run semantic-release print-version --current)"
gh release edit --prerelease "v$(poetry run semantic-release print-version --current)"
# --define=upload_to_repository=true \
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit f81594b

Please sign in to comment.