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.
1 parent 37a5b02 commit 09285b5Copy full SHA for 09285b5
.github/workflows/exercises.yml
@@ -14,10 +14,11 @@ jobs:
14
- name: Checkout
15
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
16
17
- - name: Install Rakudo Star with choco
+ - name: Install Rakudo Star with msiexec
18
if: runner.os == 'Windows'
19
run: >
20
- choco install rakudostar;
+ Invoke-WebRequest https://rakudo.org/latest/star/win -OutFile C:\rakudo-star.msi;
21
+ msiexec C:\rakudo-star.msi;
22
echo "C:\rakudo\bin;C:\rakudo\share\perl6\site\bin"
23
| Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
24
0 commit comments