Add `CARGO_HOME` to `GITHUB_ENV`

This commit is contained in:
Dario Curreri 2024-04-30 10:58:18 +02:00
parent bb45937a05
commit 18c33afdda
No known key found for this signature in database
1 changed files with 8 additions and 0 deletions

View File

@ -68,6 +68,14 @@ runs:
if: runner.os != 'Windows'
shell: bash
- run: echo CARGO_HOME=${CARGO_HOME:-$HOME/.cargo} >> $GITHUB_ENV
if: runner.os != 'Windows'
shell: bash
- run: echo CARGO_HOME=${CARGO_HOME:-$USERPROFILE/.cargo} >> $GITHUB_ENV
if: runner.os == 'Windows'
shell: bash
- name: rustup toolchain install ${{steps.parse.outputs.toolchain}}
run: rustup toolchain install ${{steps.parse.outputs.toolchain}}${{steps.flags.outputs.targets}}${{steps.flags.outputs.components}} --profile minimal${{steps.flags.outputs.downgrade}} --no-self-update
shell: bash