We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d54c82 commit a3df479Copy full SHA for a3df479
.github/generate-ci/gen_ci.hs
@@ -281,8 +281,8 @@ data Config = MkConfig Arch Opsys [GHC]
281
instance ToJSON CI where
282
toJSON (CI cs) = object
283
[ "name" .= str "Build and release"
284
- , "on" .= object [ "push" .= [object ["tags" .= [str "*"]]]
285
- , "schedule" .= [object ["cron" .= str "0 2 * * 1"]]
+ , "on" .= object [ "push" .= object ["tags" .= [str "*"]]
+ , "schedule" .= [object ["cron" .= str "0 2 * * 1"]]
286
]
287
, "env" .= object
288
[ "CABAL_CACHE_DISABLE" .= str "${{ vars.CABAL_CACHE_DISABLE }}"
.github/workflows/release.yaml
@@ -4195,7 +4195,7 @@ jobs:
4195
name: Build and release
4196
'on':
4197
push:
4198
- - tags:
+ tags:
4199
- '*'
4200
schedule:
4201
- cron: 0 2 * * 1
0 commit comments