Skip to content

Commit 279e476

Browse files
actions:make-release: call python not the script
1 parent e02737e commit 279e476

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/make-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
with:
2929
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
3030
- name: Prepare new release
31-
run: .github/scripts/prepare_release.py ${{ inputs.level }}
31+
run: python .github/scripts/prepare_release.py ${{ inputs.level }}
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
3434
- name: Publish
35-
run: .github/scripts/make_release.py
35+
run: python .github/scripts/make_release.py
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)