File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4646 run : |
4747 $ARCH = if ('${{ matrix.os }}' -eq 'windows-11-arm') { 'aarch64' } else { 'x86_64' }
4848 $RTOOLS = if ('${{ matrix.os }}' -eq 'windows-11-arm') { "rtools45-$ARCH" } else { 'rtools45' }
49- echo $ARCH | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
50- echo $RTOOLS | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
49+ echo "ARCH= $ARCH" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
50+ echo "RTOOLS= $RTOOLS" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
5151 Invoke-WebRequest `
5252 -Uri https://github.com/r-hub/rtools45/releases/download/latest/$RTOOLS.exe `
5353 -Headers @{ 'Authorization' = "Bearer ${{ secrets.GITHUB_TOKEN }}" } `
9999 run : |
100100 $ARCH = if ('${{ matrix.os }}' -eq 'windows-11-arm') { 'aarch64' } else { 'x86_64' }
101101 $RTOOLS = if ('${{ matrix.os }}' -eq 'windows-11-arm') { "rtools45-$ARCH" } else { 'rtools45' }
102- echo $ARCH | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
103- echo $RTOOLS | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
102+ echo "ARCH= $ARCH" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
103+ echo "RTOOLS= $RTOOLS" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
104104 Invoke-WebRequest `
105105 -Uri https://github.com/r-hub/rtools45/releases/download/latest/$RTOOLS.exe `
106106 -Headers @{ 'Authorization' = "Bearer ${{ secrets.GITHUB_TOKEN }}" } `
You can’t perform that action at this time.
0 commit comments