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 4421ab0 commit 8ec3559Copy full SHA for 8ec3559
.github/workflows/windows.yml
@@ -49,7 +49,9 @@ jobs:
49
# ====================
50
# Setup Perl
51
52
-
+ - name: Uninstall Preinstalled Strawberry Perl
53
+ run: |
54
+ choco uninstall -y strawberryperl
55
- name: Setup Strawberry Perl Cache
56
uses: actions/cache@v4
57
id: perl-cache
@@ -61,7 +63,6 @@ jobs:
61
63
# GitHub's CI environment comes with a preinstalled version of Strawberry Perl.
62
64
# So first uninstall that one, then pick the version we want.
65
run: |
- choco uninstall -y strawberryperl
66
choco install -y strawberryperl --version ${{ matrix.perl }}
67
68
0 commit comments