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 21a6d51 commit 5df38cdCopy full SHA for 5df38cd
.github/actions/check-release-builds/action.yml
@@ -56,4 +56,4 @@ runs:
56
run: |
57
cabal run ./scripts/check-release-builds.hs \
58
${{ inputs.hackage-index-state && format('--index-state={0}', inputs.hackage-index-state) }} \
59
- -- ${{ inputs.cabal-files }}
+ -- ${{ inputs.cli-args }}
scripts/check-release-builds.hs
@@ -34,8 +34,8 @@ main = do
34
ghcVersions : cabalFiles
35
| Just vs <- case ghcVersions of
36
"Default" -> Just [Default]
37
- "All" -> Just allGhcVersions
38
- _ -> Nothing
+ "All" -> Just allGhcVersions
+ _ -> Nothing
39
-> do
40
printf "Checking release builds for %s with ghc versions %s...\n" (show cabalFiles) (show $ fmap ghcVersionExecutableName vs)
41
0 commit comments