We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18e0097 commit e0fe8edCopy full SHA for e0fe8ed
make-release.sh
@@ -88,11 +88,20 @@ exportEnvironmentVariables() {
88
export CHANNELS=$CHANNEL
89
90
}
91
+
92
+commitChanges() {
93
+ echo "[INFO] Pushing changes to $SCHEMA_VERSION branch"
94
+ git add -A
95
+ git commit -s -m "$1"
96
+ git push origin $SCHEMA_VERSION
97
+}
98
99
main(){
100
+ checkoutToReleaseBranch
101
updateVersionNumbers
102
exportEnvironmentVariables
103
make bundle
104
+ commitChanges "chore(release): release version ${SCHEMA_VERSION}"
105
106
107
main
0 commit comments