Skip to content

Commit

Permalink
ci: try to fix line break issue
Browse files Browse the repository at this point in the history
  • Loading branch information
stevana committed Oct 22, 2024
1 parent f1b9b8f commit 9ae822c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
# key: ${{ steps.ghc-cabal-cache.outputs.cache-primary-key }}

- name: Configure the build
run:
run: |
docker run \
-v "${PWD}":/mnt/ \
-v "${HOME}/.cabal/packages":/root/.cache/cabal/packages \
Expand All @@ -82,7 +82,7 @@ jobs:
# XXX: this shouldn't be necessary, already done in image...
- name: Run cabal update
run:
run: |
docker run \
-v "${PWD}":/mnt/:ro \
-v "${HOME}/.cabal/packages":/root/.cache/cabal/packages \
Expand All @@ -92,7 +92,7 @@ jobs:
update hackage.haskell.org,2024-10-21T00:00:00Z
- name: Build the cache key
run:
run: |
docker run \
-v "${PWD}":/mnt/:ro \
-v "${HOME}/.cabal/packages":/root/.cache/cabal/packages \
Expand All @@ -115,7 +115,7 @@ jobs:
- name: Install dependencies
# If we had an exact cache hit, the dependencies will be up to date.
if: steps.cache.outputs.cache-hit != 'true'
run:
run: |
docker run \
-v "${PWD}":/mnt/:ro \
-v "${HOME}/.cabal/packages":/root/.cache/cabal/packages \
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
#

- name: Build static binary
run:
run: |
docker run \
-v "${PWD}":/mnt/:ro \
-v "${HOME}/.cabal/packages":/root/.cache/cabal/packages \
Expand Down

0 comments on commit 9ae822c

Please sign in to comment.