We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35cc98d commit f94dc66Copy full SHA for f94dc66
.github/workflows/release.yml
@@ -15,10 +15,11 @@ jobs:
15
run: |
16
git config --global user.name 'Kevel CI'
17
git config --global user.email 'engineering@kevel.co'
18
- git commit -am "Bump version to ${GITHUB_REF#refs/*/}"
19
- git tag --force ${GITHUB_REF#refs/*/}
20
- git push
21
- git push --tags --force
+ if git commit -am "Bump version to ${GITHUB_REF#refs/*/}"; then
+ git tag --force ${GITHUB_REF#refs/*/}
+ git push
+ git push --tags --force
22
+ fi
23
- name: set up ruby
24
uses: actions/setup-ruby@v1
25
with:
0 commit comments