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 b8205fa commit d48cc0fCopy full SHA for d48cc0f
.github/actions/setup-build/action.yml
@@ -23,6 +23,14 @@ inputs:
23
runs:
24
using: "composite"
25
steps:
26
+ - name: Workaround runner image issue
27
+ if: runner.os == 'Linux'
28
+ # https://github.com/actions/runner-images/issues/7061
29
+ run: |
30
+ sudo mkdir -p /usr/local/.ghcup
31
+ sudo chown -R $USER /usr/local/.ghcup
32
+ shell: bash
33
+
34
- uses: haskell/actions/[email protected]
35
id: HaskEnvSetup
36
with:
0 commit comments