diff options
| author | Bert Belder <bertbelder@gmail.com> | 2021-07-01 23:48:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-01 23:48:53 +0200 |
| commit | 1a5984983f7205769c9b6ce1e3cc66b41dee7bc7 (patch) | |
| tree | 8109ba7deda0134484cbd41e52afaa1b26c6f59f | |
| parent | 899470addc1fe9653f293ef9b85d42ab6d927bc1 (diff) | |
ci: don't set DENO_CANARY when releasing, attempt 2 (#11214)
| -rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 6 insertions, 1 deletions
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 |
