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 5972cf9 commit a5bd704Copy full SHA for a5bd704
.github/workflows/run-release.yml
@@ -27,6 +27,8 @@ jobs:
27
exit 0
28
fi
29
30
+ git --no-pager tag
31
+ git show 0.4.23
32
CURRENT_VERSION=$(git describe --tags --abbrev=0)
33
34
IFS='.' read -r MAJOR MINOR PATCH <<< "$CURRENT_VERSION"
@@ -57,4 +59,6 @@ jobs:
57
59
58
60
- name: Delete failed release tag
61
if: ${{ failure() }}
- run: git push --delete origin ${{ steps.resolve-version.outputs.NEW_VERSION }}
62
+ run: |
63
+ exit 0
64
+ git push --delete origin ${{ steps.resolve-version.outputs.NEW_VERSION }}
0 commit comments