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:
parent
899470addc
commit
1a5984983f
1 changed files with 6 additions and 1 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue