Skip to content

Commit 6de0918

Browse files
committed
ci: handle "boolean" types
1 parent 8e89cf8 commit 6de0918

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/haskell.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ jobs:
3939
uses: haskell-actions/setup@v2
4040
with:
4141
ghc-version: ${{ matrix.ghc }}
42-
enable-stack: ${{ matrix.build_tool == 'stack' }}
43-
stack-no-global: ${{ matrix.build_tool == 'stack' }}
44-
stack-setup-ghc: ${{ matrix.build_tool == 'stack' }}
42+
enable-stack: ${{ matrix.build_tool == 'stack' && 'true' || '' }}
43+
stack-no-global: ${{ matrix.build_tool == 'stack' && 'true' || '' }}
44+
stack-setup-ghc: ${{ matrix.build_tool == 'stack' && 'true' || '' }}
4545

4646
- name: Cache dependencies (${{ matrix.build_tool }})
4747
uses: actions/cache@v4

0 commit comments

Comments
 (0)