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.
1 parent 16b4cea commit 0f1d93fCopy full SHA for 0f1d93f
.github/workflows/haskell.yml
@@ -37,7 +37,11 @@ jobs:
37
- name: Install GHC and Cabal
38
uses: input-output-hk/actions/devx@latest
39
with:
40
- platform: ${{ matrix.os == 'ubuntu-latest' && 'x86_64-linux' || 'x86_64-darwin' }}
+ platform:
41
+ ${{ (runner.os == 'Linux' && 'x86_64-linux') ||
42
+ (runner.os == 'macOS' && runner.arch == 'X64' && 'x86_64-darwin') ||
43
+ (runner.os == 'macOS' && runner.arch == 'ARM64' && 'aarch64-darwin')
44
+ }}
45
target-platform: ""
46
compiler-nix-name: ${{ matrix.compiler-nix-name }}
47
minimal: false
0 commit comments