Skip to content

Commit a3a0897

Browse files
committed
Try this
1 parent f6f8034 commit a3a0897

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/actions/setup-build/action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ runs:
2424
using: "composite"
2525
steps:
2626
- name: Workaround runner image issue
27+
if: runner.os == 'Linux'
2728
# https://github.com/actions/runner-images/issues/7061
28-
run: sudo chown -R $USER /usr/local/.ghcup
29+
run: |
30+
sudo mkdir -p /usr/local/.ghcup
31+
sudo chown -R $USER /usr/local/.ghcup
2932
shell: bash
3033

3134
- uses: haskell/actions/setup@v2.3.3

0 commit comments

Comments
 (0)