@@ -4,11 +4,8 @@ on:
workflow_dispatch:
inputs:
new_release:
- type: choice
+ type: boolean
description: Force new Release
- options:
- - no
- - yes
schedule:
- cron: '0 0 * * *'
push:
@@ -19,7 +19,7 @@ if [[ "${LATEST_VERSION}" =~ ^([0-9]+\.[0-9]+\.[0-9]+) ]]; then
export SHOULD_BUILD="yes"
VSCODIUM_ASSETS="null"
- elif [[ "${NEW_RELEASE}" == "yes" ]]; then
+ elif [[ "${NEW_RELEASE}" == "true" ]]; then
echo "New release build"