File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -1001,6 +1001,7 @@ jobs:
10011001 << : *base_ubuntu2404_xlarge
10021002 steps :
10031003 - build
1004+ - run : cat prerelease.txt
10041005
10051006 # x64 ASAN build, for testing for memory related bugs
10061007 b_ubu_asan : &b_ubu_asan
Original file line number Diff line number Diff line change @@ -11,8 +11,10 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
1111 GNU_DATE=gdate
1212fi
1313
14- if [[ $FORCE_RELEASE != " " || $git_tag == v * ]]; then
14+ if [[ $FORCE_RELEASE != " " || $git_tag =~ ^v[0-9.]+$ ]]; then
1515 echo -n
16+ elif [[ $git_tag =~ ^v[0-9.]+-pre. ]]; then
17+ echo -n " pre.${git_tag#* -pre.} "
1618else
1719 # Use last commit date rather than build date to avoid ending up with builds for
1820 # different platforms having different version strings (and therefore producing different bytecode)
You can’t perform that action at this time.
0 commit comments