We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95db9b1 commit 48c44edCopy full SHA for 48c44ed
.github/actions/github/action.yaml
@@ -62,5 +62,7 @@ runs:
62
# Extract the tag, remove "v" prefix if it exists
63
RAW_VERSION=${GITHUB_REF##*/}
64
VERSION=${RAW_VERSION#v}
65
+ GA_VERSION=${VERSION%-*}
66
echo "VERSION: $VERSION"
67
echo "version=$VERSION" >> $GITHUB_OUTPUT
68
+ echo "ga-version=$GA_VERSION" >> $GITHUB_OUTPUT
.github/workflows/release.yaml
@@ -46,7 +46,7 @@ jobs:
46
id: apk
47
uses: ./.github/actions/melange/build
48
with:
49
- version: ${{ steps.github.outputs.version }}
+ version: ${{ steps.github.outputs.ga-version }}
50
arch: ${{ steps.github.outputs.arch }}
51
signing-key: ${{ runner.temp }}/packages/melange.rsa
52
output-dir: ${{ runner.temp }}/packages
0 commit comments