We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db6c648 commit 299a85cCopy full SHA for 299a85c
1 file changed
.github/workflows/release-aot-gui.yml
@@ -10,7 +10,7 @@ permissions:
10
11
jobs:
12
build:
13
- if: startsWith(github.ref_name, 'gui-v') || github.event_name == 'workflow_dispatch'
+ if: startsWith(github.ref_name, 'v') || github.event_name == 'workflow_dispatch'
14
15
strategy:
16
fail-fast: false
@@ -51,6 +51,7 @@ jobs:
51
shell: bash
52
run: |
53
VERSION="${GITHUB_REF_NAME#gui-v}"
54
+ VERSION="${VERSION#v}"
55
if [ -z "$VERSION" ] || [ "$VERSION" = "$GITHUB_REF_NAME" ]; then VERSION="0.0.1"; fi
56
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
57
0 commit comments