Skip to content

Commit

Permalink
compatiblity with GHC 9.12 and random-1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
folivetti committed Jan 11, 2025
1 parent 8a99bdc commit 94706dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

build_artifact:
needs: [create_release]
name: windows-latest/GHC ${{ ghc }}/${{ github.ref }}
name: ${{ matrix.os }}/GHC ${{ matrix.ghc }}/${{ github.ref }}
runs-on: windows-latest
strategy:
matrix:
Expand Down Expand Up @@ -65,13 +65,13 @@ jobs:
uses: haskell-actions/setup@v2
id: setup-haskell-cabal
with:
ghc-version: ${{ ghc }}
cabal-version: ${{ cabal }}
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}

- name: Cache ~/.cabal/store
uses: actions/cache@v2
with:
key: ${{ runner.os }}-ghc-${{ ghc }}-${{ github.sha }}
key: ${{ runner.os }}-ghc-${{ matrix.ghc }}-${{ github.sha }}
path: ~/.cabal/store

- name: Build windows binary
Expand Down

0 comments on commit 94706dd

Please sign in to comment.