Skip to content

Commit d54c3e5

Browse files
Apply Workaround to windows Build
1 parent ec23f6b commit d54c3e5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build-release.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,12 @@ jobs:
186186
name: Windows
187187
runs-on: windows-2019
188188
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
189195
- uses: actions/checkout@v1
190196
# Checkout repo
191197
name: Checkout

0 commit comments

Comments
 (0)