Skip to content

Commit

Permalink
Do not override value of an already set environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Feb 12, 2023
1 parent 0b8aa5e commit 5dd156c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions action.yml
Expand Up @@ -85,17 +85,23 @@ runs:

- run: |
: disable incremental compilation
echo CARGO_INCREMENTAL=0 >> $GITHUB_ENV
if [ -z ${CARGO_INCREMENTAL+set} ]; then
echo CARGO_INCREMENTAL=0 >> $GITHUB_ENV
fi
shell: bash
- run: |
: enable colors in Cargo output
echo CARGO_TERM_COLOR=always >> $GITHUB_ENV
if [ -z ${CARGO_TERM_COLOR+set} ]; then
echo CARGO_TERM_COLOR=always >> $GITHUB_ENV
fi
shell: bash
- run: |
: enable Cargo sparse registry # ignored by stable cargo
echo CARGO_UNSTABLE_SPARSE_REGISTRY=true >> $GITHUB_ENV
if [ -z ${CARGO_UNSTABLE_SPARSE_REGISTRY+set} ]; then
echo CARGO_UNSTABLE_SPARSE_REGISTRY=true >> $GITHUB_ENV
fi
shell: bash
- run: rustc +${{steps.parse.outputs.toolchain}} --version --verbose
Expand Down

0 comments on commit 5dd156c

Please sign in to comment.