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 ec23f6b commit d54c3e5Copy full SHA for d54c3e5
.github/workflows/build-release.yaml
@@ -186,6 +186,12 @@ jobs:
186
name: Windows
187
runs-on: windows-2019
188
steps:
189
+ # workaround for failing download of prebuilt libs in 20231016.1.0 runner
190
+ # https://github.com/actions/runner-images/issues/8598
191
+ - name: Remove Strawberry Perl from PATH
192
+ run: |
193
+ $env:PATH = $env:PATH -replace "C:\\Strawberry\\c\\bin;", ""
194
+ "PATH=$env:PATH" | Out-File -FilePath $env:GITHUB_ENV -Append
195
- uses: actions/checkout@v1
196
# Checkout repo
197
name: Checkout
0 commit comments