File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -100,15 +100,15 @@ function push_to_git {
100
100
# Get the new version
101
101
local new_release_tag=` cat version`
102
102
# Add the changed files
103
- git add version package.json package-lock.json release-notes.md
103
+ git add version package.json release-notes.md
104
104
105
105
# Commit it as a prerelease or a release
106
106
# NOTE: Do not tag the commit, as the CI will then not create a release
107
107
# Pre-releases will contain a dash in their version
108
108
if [[ $new_release_tag =~ " -" ]]; then
109
- git commit -m " chore(release ): prerelease $new_release_tag "
109
+ git commit -m " chore(rel ): prerelease $new_release_tag "
110
110
else
111
- git commit -m " chore(release ): release $new_release_tag "
111
+ git commit -m " chore(rel ): release $new_release_tag "
112
112
fi
113
113
114
114
# Push the changes
You can’t perform that action at this time.
0 commit comments