Skip to content

Commit 09285b5

Browse files
committed
Fix Windows Rakudo Star Installation
1 parent 37a5b02 commit 09285b5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/exercises.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
1616

17-
- name: Install Rakudo Star with choco
17+
- name: Install Rakudo Star with msiexec
1818
if: runner.os == 'Windows'
1919
run: >
20-
choco install rakudostar;
20+
Invoke-WebRequest https://rakudo.org/latest/star/win -OutFile C:\rakudo-star.msi;
21+
msiexec C:\rakudo-star.msi;
2122
echo "C:\rakudo\bin;C:\rakudo\share\perl6\site\bin"
2223
| Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
2324

0 commit comments

Comments
 (0)