We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb45937 + 18c33af commit b004a9eCopy full SHA for b004a9e
action.yml
@@ -68,6 +68,14 @@ runs:
68
if: runner.os != 'Windows'
69
shell: bash
70
71
+ - run: echo CARGO_HOME=${CARGO_HOME:-$HOME/.cargo} >> $GITHUB_ENV
72
+ if: runner.os != 'Windows'
73
+ shell: bash
74
+
75
+ - run: echo CARGO_HOME=${CARGO_HOME:-$USERPROFILE/.cargo} >> $GITHUB_ENV
76
+ if: runner.os == 'Windows'
77
78
79
- name: rustup toolchain install ${{steps.parse.outputs.toolchain}}
80
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
81
0 commit comments