Skip to content

Commit 5865947

Browse files
committed
fix(ci): fix versiontool oopsie again and again
1 parent 7f6888c commit 5865947

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/create-release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Update version
5151
run: |
52-
poetry run scripts/versiontool.py --set "$VERSION_INPUT"
52+
poetry run python scripts/versiontool.py --set "$VERSION_INPUT"
5353
git commit -a -m "chore: update version to $VERSION_INPUT"
5454
5555
- name: Build changelog

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
- name: Update version to dev
192192
id: update-version
193193
run: |
194-
NEW_VERSION="$(poetry run scripts/versiontool.py --set dev)"
194+
NEW_VERSION="$(poetry run python scripts/versiontool.py --set dev)"
195195
git commit -a -m "chore: update version to v$NEW_VERSION"
196196
echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
197197

0 commit comments

Comments
 (0)