We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd10240 commit f3dcfe6Copy full SHA for f3dcfe6
1 file changed
.github/actions/set-snapshot-version/action.yml
@@ -1,5 +1,5 @@
1
name: Set Snapshot Version
2
-description: Set snapshot version (0.0.0-g{sha}.{timestamp}) for pre-release builds
+description: Set snapshot version (0.0.2-g{sha}.{timestamp}) for pre-release builds
3
4
outputs:
5
version:
@@ -15,5 +15,5 @@ runs:
15
run: |
16
SHORT_SHA=$(echo "${{ github.sha }}" | cut -c1-8)
17
BUILD_TIME=$(date -u +%Y%m%d-%H%M)
18
- VERSION="0.0.0-g${SHORT_SHA}.${BUILD_TIME}"
+ VERSION="0.0.2-g${SHORT_SHA}.${BUILD_TIME}"
19
echo "version=${VERSION}" >> $GITHUB_OUTPUT
0 commit comments