1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 04:48:52 -05:00

ci: don't set DENO_CANARY when releasing, attempt 2 (#11214)

This commit is contained in:
Bert Belder 2021-07-01 23:48:53 +02:00 committed by GitHub
parent 899470addc
commit 1a5984983f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -194,6 +194,12 @@ jobs:
cat >> ~/.bash_profile << ___ cat >> ~/.bash_profile << ___
cd "$(pwd)" cd "$(pwd)"
# Configure canary build.
if [ "$DENO_CANARY" == "true" ]
then
export DENO_CANARY=true
fi
# Add cargo, rustc, and deno to $PATH. # Add cargo, rustc, and deno to $PATH.
source /usr/share/rust/.cargo/env source /usr/share/rust/.cargo/env
export PATH="$PATH:$(pwd)/target/release" export PATH="$PATH:$(pwd)/target/release"
@ -221,7 +227,6 @@ jobs:
# Miscellaneous flags. # Miscellaneous flags.
export CARGO_TERM_COLOR=always export CARGO_TERM_COLOR=always
export CI=true export CI=true
export DENO_CANARY=$DENO_CANARY
___ ___
- name: Log versions - name: Log versions