We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f6888c commit 5865947Copy full SHA for 5865947
.github/workflows/create-release-pr.yml
@@ -49,7 +49,7 @@ jobs:
49
50
- name: Update version
51
run: |
52
- poetry run scripts/versiontool.py --set "$VERSION_INPUT"
+ poetry run python scripts/versiontool.py --set "$VERSION_INPUT"
53
git commit -a -m "chore: update version to $VERSION_INPUT"
54
55
- name: Build changelog
.github/workflows/release.yml
@@ -191,7 +191,7 @@ jobs:
191
- name: Update version to dev
192
id: update-version
193
194
- NEW_VERSION="$(poetry run scripts/versiontool.py --set dev)"
+ NEW_VERSION="$(poetry run python scripts/versiontool.py --set dev)"
195
git commit -a -m "chore: update version to v$NEW_VERSION"
196
echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
197
0 commit comments