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:
parent
ed16f43322
commit
c848f12842
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 << ___
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue