From 1a5984983f7205769c9b6ce1e3cc66b41dee7bc7 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Thu, 1 Jul 2021 23:48:53 +0200 Subject: ci: don't set DENO_CANARY when releasing, attempt 2 (#11214) --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 436fefae0..fc773aef9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -194,6 +194,12 @@ jobs: cat >> ~/.bash_profile << ___ cd "$(pwd)" + # Configure canary build. + if [ "$DENO_CANARY" == "true" ] + then + export DENO_CANARY=true + fi + # Add cargo, rustc, and deno to $PATH. source /usr/share/rust/.cargo/env export PATH="$PATH:$(pwd)/target/release" @@ -221,7 +227,6 @@ jobs: # Miscellaneous flags. export CARGO_TERM_COLOR=always export CI=true - export DENO_CANARY=$DENO_CANARY ___ - name: Log versions -- cgit v1.2.3