Skip to content

Commit afbbde3

Browse files
committed
CI
1 parent 1447599 commit afbbde3

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/actions/setup-build/action.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,23 @@ runs:
3131
sudo chown -R $USER /usr/local/.ghcup
3232
shell: bash
3333

34-
- uses: haskell/actions/setup@v2.3.3
34+
- if: inputs.os != 'Windows'
35+
uses: haskell/actions/setup@v2.3.3
3536
id: HaskEnvSetup
3637
with:
3738
ghc-version : ${{ inputs.ghc }}
3839
cabal-version: ${{ inputs.cabal }}
3940
enable-stack: false
4041
ghcup-release-channel: "https://raw.githubusercontent.com/haskell/ghcup-metadata/b9fd40eef5a6409a0742a5a248cda0cc24510d45/ghcup-prereleases-0.0.7.yaml"
4142

43+
- if: inputs.os == 'Windows'
44+
uses: haskell/actions/setup@v2.3.3
45+
id: HaskEnvSetupWin
46+
with:
47+
ghc-version : ${{ inputs.ghc }}
48+
cabal-version: ${{ inputs.cabal }}
49+
enable-stack: false
50+
4251
- if: inputs.os == 'Windows'
4352
name: (Windows) Platform config
4453
run: |

0 commit comments

Comments
 (0)