Fixes for release v5 (#1745)
* Change to v5.0 * Fix script to assume no RC * Bump to version 5.0-rc1 * Fix the version * Bump to version 5.0.0-rc1 * Fix msi build * Bump to version 5.0.0-rc2 * Fix version again * Bump to version 5.0.0-rc1 * Oops * Bump to version 5.0.0-rc1 * Remove version upgrade * Lock to version 16
This commit is contained in:
@@ -208,6 +208,9 @@ jobs:
|
||||
- run: mkdir -p ./dist/
|
||||
- attach_workspace:
|
||||
at: ./dist
|
||||
- run:
|
||||
name: Update node to v16
|
||||
command: choco install nodejs --version 16.8.0
|
||||
- win_make:
|
||||
operation: optimize
|
||||
- win_make:
|
||||
|
@@ -80,13 +80,13 @@ case "${1}" in
|
||||
if [[ "${pkg_version}" =~ "-rc" ]]; then
|
||||
rc="${pkg_version#*-rc}"
|
||||
else
|
||||
print_warning "No release candidate on the version, assuming 1"
|
||||
rc=1
|
||||
print_warning "No release candidate on the version, assuming 0"
|
||||
rc=0
|
||||
fi
|
||||
case "${rc}" in
|
||||
''|*[!0-9]*)
|
||||
print_warning "Can't guess release candidate from version, assuming 1"
|
||||
rc=1
|
||||
rc=0
|
||||
;;
|
||||
*)
|
||||
rc=$(( rc + 1 ))
|
||||
|
Reference in New Issue
Block a user