File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ jobs:
2626 # TODO(b/440196950): Setup condition for stable channel.
2727 case "${{ inputs.deploy-channel }}" in
2828 unstable)
29- # Unstable version format : X.Y- gitYYYYMMDDHHMM-<Github SHA 8 digit>
29+ # Unstable version format : X.Y~ gitYYYYMMDDHHMM-<Github SHA 8 digit>
3030 SEMVER=$(echo ${{ github.ref_name }} | grep -oE '[0-9]+.[0-9]+')
3131 SHORT_SHA=$(echo ${{ github.sha }} | cut -c1-8)
32- VERSION="${SEMVER}- git${TIME}-${SHORT_SHA}"
32+ VERSION="${SEMVER}~ git${TIME}-${SHORT_SHA}"
3333 ;;
3434 nightly)
35- # Nightly version format : gitYYYYMMDDHHMM-<Github SHA 8 digit>
35+ # Nightly version format : 0~ gitYYYYMMDDHHMM-<Github SHA 8 digit>
3636 SHORT_SHA=$(echo ${{ github.sha }} | cut -c1-8)
37- VERSION="git${TIME}-${SHORT_SHA}"
37+ VERSION="0~ git${TIME}-${SHORT_SHA}"
3838 ;;
3939 *)
4040 exit 1
You can’t perform that action at this time.
0 commit comments