File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Original file line number Diff line number Diff line change 29
29
- name : Install Rustup
30
30
run : |
31
31
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly
32
- echo ::add-path:: $HOME/.cargo/bin
32
+ echo " $HOME/.cargo/bin" >> $GITHUB_PATH
33
33
if : runner.os == 'macOS'
34
34
35
35
- name : " Print Rust Version"
43
43
path : binaries
44
44
key : ${{ runner.OS }}-binaries
45
45
- name : Add binaries/bin to PATH
46
- run : echo ::add-path:: $GITHUB_WORKSPACE/binaries/bin
46
+ run : echo " $GITHUB_WORKSPACE/binaries/bin" >> $GITHUB_PATH
47
47
shell : bash
48
48
49
49
- name : " Run cargo build"
75
75
- name : Install Scoop (Windows)
76
76
run : |
77
77
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
78
- echo ::add-path:: $HOME\scoop\shims
78
+ echo " $HOME\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
79
79
if : runner.os == 'Windows'
80
80
shell : pwsh
81
81
- name : Install QEMU (Windows)
You can’t perform that action at this time.
0 commit comments