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 c4e4fa0 commit 349ff2bCopy full SHA for 349ff2b
2 files changed
.github/workflows/auto-tag.yml
@@ -29,6 +29,7 @@ jobs:
29
run: |
30
BRANCH="${{ github.event.pull_request.head.ref }}"
31
VERSION="${BRANCH#release/}"
32
+ VERSION="${VERSION#v}"
33
echo "VERSION=$VERSION" >> "$GITHUB_OUTPUT"
34
echo "TAG=v${VERSION}" >> "$GITHUB_OUTPUT"
35
echo "Detected version: $VERSION (tag: v${VERSION})"
.github/workflows/build.yml
@@ -1,10 +1,9 @@
1
name: Build and Release
2
3
on:
4
- workflow_dispatch:
5
push:
6
tags:
7
- - 'v*.*.*' # Trigger only on version tags like v1.2.3
+ - 'v[0-9]*.[0-9]*.[0-9]*'# Trigger only on version tags like v1.2.3
8
9
jobs:
10
# --- JOB 1: BUILD ---
0 commit comments