From 0ef46e7ef8615d20b7089377471d15c7f8f164d4 Mon Sep 17 00:00:00 2001 From: Louis Page Date: Fri, 10 Feb 2023 19:11:36 -0600 Subject: [PATCH] edit github action config to include permissions for .ghcup (#1141) * edit github action config to include permissions for .ghcup * testing failed fix * excluding mac from fix * adding wildcard for ubuntu images * fixing cause wildcards don't work i guess * Update .github/workflows/applications.yml Co-authored-by: Lars Kuhtz --------- Co-authored-by: Louis Page Co-authored-by: Lars Kuhtz --- .github/workflows/applications.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/applications.yml b/.github/workflows/applications.yml index 01190eb01..797fd485a 100644 --- a/.github/workflows/applications.yml +++ b/.github/workflows/applications.yml @@ -74,6 +74,9 @@ jobs: run: choco install -y -r awscli # Haskell Setup + - name: Set permissions for .ghcup (ubuntu) + if: startsWith(matrix.os, 'ubuntu-') + run: sudo chown -R $USER /usr/local/.ghcup - name: Install GHC and Cabal uses: haskell/actions/setup@v2 with: