We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7ed91d commit 64613c0Copy full SHA for 64613c0
.github/actions/github/action.yaml
@@ -17,6 +17,9 @@ outputs:
17
version:
18
description: 'The formatted version'
19
value: ${{ steps.version.outputs.version }}
20
+ ga-version:
21
+ description: 'The formatted GA version'
22
+ value: ${{ steps.version.outputs.ga-version }}
23
24
runs:
25
using: composite
@@ -64,5 +67,6 @@ runs:
64
67
VERSION=${RAW_VERSION#v}
65
68
GA_VERSION=${VERSION%-*}
66
69
echo "VERSION: $VERSION"
70
+ echo "GA_VERSION: $GA_VERSION"
71
echo "version=$VERSION" >> $GITHUB_OUTPUT
72
echo "ga-version=$GA_VERSION" >> $GITHUB_OUTPUT
0 commit comments