aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2022-03-04 00:14:23 -0500
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2022-03-04 00:14:23 -0500
commitc0445b8505a06733b02d64397781896a92303181 (patch)
tree6ae78fedfeb6c44082859dbc6a58767aafed7cdb
parentd6bcb68b8d9387334ae1abc99dc8256e3ab555c4 (diff)
Fixed GitHub workflow.
-rw-r--r--.github/workflows/release.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 7ea28021..6b419574 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -43,8 +43,8 @@ jobs:
# Build.
if [[ ${{ github.event_name }} != schedule ]]; then
target="${{ github.event.inputs.target }}"
- if [[ ${{ github.event.inputs.nightly }} = true ]]; then nightly="NIGHTLY=1"; fi
- if [[ ${{ github.event.inputs.debug }} = true ]]; then debug="DEBUG=1"; fi
+ if [[ "${{ github.event.inputs.nightly }}" = true ]]; then nightly="NIGHTLY=1"; fi
+ if [[ "${{ github.event.inputs.debug }}" = true ]]; then debug="DEBUG=1"; fi
else
target="release"
nightly="NIGHTLY=1"