File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 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
55to create the new release.
66
77"""
Original file line number Diff line number Diff 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 }}
Original file line number Diff line number Diff line change 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 }}
You can’t perform that action at this time.
0 commit comments