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 7607e10 commit 569afe3Copy full SHA for 569afe3
.github/workflows/release.yml
@@ -3,7 +3,7 @@ name: Release
3
on:
4
push:
5
tags:
6
- - 'v*.*.*'
+ - '*.*.*'
7
8
jobs:
9
snapshot:
@@ -17,7 +17,7 @@ jobs:
17
- name: Verify tag
18
run: |
19
VERSION=$(grep VERSION_NAME gradle.properties | awk -F= '{ print $2 }' | sed "s/-SNAPSHOT//")
20
- if [ "${{ steps.vars.outputs.tag }}" != "v$VERSION" ]; then {
+ if [ "${{ steps.vars.outputs.tag }}" != "$VERSION" ]; then {
21
echo "Tag ${{ steps.vars.outputs.tag }} does not match the package version ($VERSION)"
22
exit 1
23
} fi
0 commit comments