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 ae014c5 commit 78ce3a9Copy full SHA for 78ce3a9
.github/workflows/maven-publish.yml
@@ -38,7 +38,7 @@ jobs:
38
RELEASE_ID=$(gh release view v${{ env.VERSION }} --json id -q '.id' || echo "")
39
if [ -n "$RELEASE_ID" ]; then
40
echo "Deleting existing release..."
41
- gh release delete v${{ env.VERSION }} --yes
+ gh release delete ${{ env.VERSION }} --yes
42
fi
43
env:
44
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -48,7 +48,7 @@ jobs:
48
if git rev-parse "v${{ env.VERSION }}" >/dev/null 2>&1; then
49
echo "Deleting existing tag..."
50
git tag -d v${{ env.VERSION }}
51
- git push origin :refs/tags/v${{ env.VERSION }}
+ git push origin :refs/tags/${{ env.VERSION }}
52
53
54
0 commit comments