File tree 1 file changed +1
-2
lines changed
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -88,11 +88,10 @@ jobs:
88
88
IFS="." read -ra VERSION_NUM <<< "${VERSION_PARTS[0]}"
89
89
((VERSION_NUM[2]+=1))
90
90
NEW_VERSION="${VERSION_NUM[0]}.${VERSION_NUM[1]}.${VERSION_NUM[2]}-SNAPSHOT"
91
- echo "new_version $NEW_VERSION"
92
91
awk -v new_version="$NEW_VERSION" '/projectVersion=/{sub(/=.*/, "=" new_version)}1' gradle.properties > tmpfile && mv tmpfile gradle.properties
93
92
echo "Set $NEW_VERSION in gradle.properties"
94
93
git commit -sam "chore(skip-release): set version to $NEW_VERSION"
95
- git push origin $NEW_VERSION
94
+ gh pr create -B main --title 'chore(skip-release): set version to $NEW_VERSION' --body 'Created by Github action'
96
95
97
96
- name : Simple conventional changelog
98
97
uses : lstocchi/simple-conventional-changelog@13071c09073f5deddf03d44d9af6a8b0f81ef227 # 0.0.11
You can’t perform that action at this time.
0 commit comments