File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 18
18
19
19
- name : Apply Bump
20
20
shell : bash
21
+ env :
22
+ NEW_VERSION : ${{ inputs.new_version }}
21
23
run : |
22
- bash ./scripts/bump_version .sh ${{ github.event.inputs.new_version }}
24
+ bash ./scripts/release/bump-version .sh "$NEW_VERSION"
23
25
24
26
- name : Create Pull Request
25
27
uses : peter-evans/create-pull-request@v4
Original file line number Diff line number Diff line change 75
75
76
76
git switch -c release-automation/bump-version
77
77
78
- python scripts/bump_version .sh "$next_version"
78
+ python scripts/release/bump-version .sh "$next_version"
79
79
80
80
git add -u .
81
81
git commit -m "Bump version to $next_version"
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ jobs:
137
137
git switch -c feature/update-user-manual-for-$RELEASE_VERSION
138
138
git push --set-upstream origin feature/update-user-manual-for-$RELEASE_VERSION
139
139
140
- scripts/bump_version .sh "$RELEASE_VERSION"
140
+ scripts/release/bump-version .sh "$RELEASE_VERSION"
141
141
142
142
git add -u .
143
143
git commit -m "Update version"
Original file line number Diff line number Diff line change 3
3
4
4
if [[ -z $1 ]];
5
5
then
6
- echo " Usage: bump_version .sh <new_version>"
6
+ echo " Usage: bump-version .sh <new_version>"
7
7
exit
8
8
fi
9
9
You can’t perform that action at this time.
0 commit comments