We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.github/workflows/build.yml
1 parent a11f6b9 commit d1975d7Copy full SHA for d1975d7
.github/workflows/build.yml
@@ -41,6 +41,15 @@ jobs:
41
with:
42
caching: true
43
44
+ - shell: bash
45
+ run: |
46
+ for GHC in 9.4
47
+ do
48
+ ghcup install ghc $GHC --no-set
49
+ SENSEI_GHC=ghc-$GHC $(cabal list-bin spec)
50
+ done
51
+ if: matrix.ghc == 'latest'
52
+
53
- run: echo "name=sensei-$(uname -s)-$(uname -m).tar.gz" >> $GITHUB_OUTPUT
54
id: archive
55
@@ -55,15 +64,6 @@ jobs:
64
compression-level: 0
56
65
if: matrix.ghc == 'latest'
57
66
58
- - shell: bash
59
- run: |
60
- for GHC in 9.4
61
- do
62
- ghcup install ghc $GHC --no-set
63
- SENSEI_GHC=ghc-$GHC $(cabal list-bin spec)
- done
- if: matrix.ghc == 'latest'
-
67
success:
68
needs: build
69
runs-on: ubuntu-latest
0 commit comments