File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -71,15 +71,16 @@ jobs:
71
71
echo "New release is ${new_version}"
72
72
echo "new_version=${new_version}" >> "$GITHUB_OUTPUT"
73
73
git pull --rebase
74
- npm version --no-git-tag-version --allow-same-version $new_version
74
+ npm version --no-git-tag-version --allow-same-version $new_version || exit 0
75
75
76
76
- name : Commit the changes
77
+ continue-on-error : true
77
78
run : |
78
79
git config --global user.email 'github-ci@boldcommerce.com'
79
80
git config --global user.name 'bold-github-ci'
80
81
git add package.json package-lock.json
81
- git commit -m 'Bump version number for release'
82
- git push origin
82
+ git commit -m 'Bump version number for release' || exit 0
83
+ git push origin || exit 0
83
84
84
85
- name : Create github release
85
86
env :
You can’t perform that action at this time.
0 commit comments