1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -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 Luca Casonato
parent ed16f43322
commit c848f12842
No known key found for this signature in database
GPG key ID: 01A83EB62563811F

View file

@ -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