From d543d9253581b0c31928ebd417aec99221c46291 Mon Sep 17 00:00:00 2001 From: Sam Tay Date: Sat, 19 Oct 2024 22:53:29 -0400 Subject: [PATCH] Get rid of ghc/cabal matrix --- .github/workflows/release.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 45a675c..97f0777 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -52,15 +52,12 @@ jobs: build_artifact: needs: [create_release] - name: ${{ matrix.os }}/GHC ${{ matrix.ghc }}/${{ github.ref }} + name: ${{ matrix.os }}/${{ github.ref }} runs-on: ${{ matrix.os }} strategy: fail-fast: true matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - ghc: - - "9.6.3" - cabal: ["3.8"] steps: - name: Check out code @@ -77,8 +74,8 @@ jobs: uses: haskell/actions/setup@v2.4.7 id: setup-haskell-cabal with: - ghc-version: ${{ matrix.ghc }} - cabal-version: ${{ matrix.cabal }} + ghc-version: "latest" + cabal-version: "latest" - name: Freeze run: | @@ -88,7 +85,7 @@ jobs: uses: actions/cache@v4 with: path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }} - key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }} + key: ${{ runner.os }}-${{ hashFiles('cabal.project.freeze') }} - name: Build binary run: |