Skip to content

Commit c7157aa

Browse files
.github release action update
1 parent b729e89 commit c7157aa

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/scripts/make_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
"""This script is part of the GitHub CI make-release pipeline
33
4-
It reads the version number from climada/_version.py and then uses the `gh` cli
4+
It reads the version number from climada*/_version.py and then uses the `gh` cli
55
to create the new release.
66
77
"""

.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 }}

.github/workflows/postrelease-setup-devbranch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
with:
2020
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
2121
- name: Update files
22-
run: .github/scripts/setup_devbranch.sh
22+
run: bash .github/scripts/setup_devbranch.sh
2323
env:
2424
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)