Skip to content

Commit 64613c0

Browse files
committed
fix(ci): fix ga-version generation
1 parent b7ed91d commit 64613c0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/actions/github/action.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ outputs:
1717
version:
1818
description: 'The formatted version'
1919
value: ${{ steps.version.outputs.version }}
20+
ga-version:
21+
description: 'The formatted GA version'
22+
value: ${{ steps.version.outputs.ga-version }}
2023

2124
runs:
2225
using: composite
@@ -64,5 +67,6 @@ runs:
6467
VERSION=${RAW_VERSION#v}
6568
GA_VERSION=${VERSION%-*}
6669
echo "VERSION: $VERSION"
70+
echo "GA_VERSION: $GA_VERSION"
6771
echo "version=$VERSION" >> $GITHUB_OUTPUT
6872
echo "ga-version=$GA_VERSION" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)