Skip to content

Commit

Permalink
ci: don't set DENO_CANARY when releasing, attempt 2 (denoland#11214)
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Jul 1, 2021
1 parent 899470a commit 1a59849
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -221,7 +227,6 @@ jobs:
# Miscellaneous flags.
export CARGO_TERM_COLOR=always
export CI=true
export DENO_CANARY=$DENO_CANARY
___
- name: Log versions
Expand Down

0 comments on commit 1a59849

Please sign in to comment.