File tree 1 file changed +10
-1
lines changed
.github/actions/setup-build
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,23 @@ runs:
31
31
sudo chown -R $USER /usr/local/.ghcup
32
32
shell : bash
33
33
34
- - uses : haskell/actions/setup@v2.3.3
34
+ - if : inputs.os != 'Windows'
35
+ uses : haskell/actions/setup@v2.3.3
35
36
id : HaskEnvSetup
36
37
with :
37
38
ghc-version : ${{ inputs.ghc }}
38
39
cabal-version : ${{ inputs.cabal }}
39
40
enable-stack : false
40
41
ghcup-release-channel : " https://raw.githubusercontent.com/haskell/ghcup-metadata/b9fd40eef5a6409a0742a5a248cda0cc24510d45/ghcup-prereleases-0.0.7.yaml"
41
42
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
+
42
51
- if : inputs.os == 'Windows'
43
52
name : (Windows) Platform config
44
53
run : |
You can’t perform that action at this time.
0 commit comments