Skip to content

Commit a3df479

Browse files
committedMar 26, 2025
Fix typo in Bindist CI job trigger
1 parent 4d54c82 commit a3df479

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.github/generate-ci/gen_ci.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,8 @@ data Config = MkConfig Arch Opsys [GHC]
281281
instance ToJSON CI where
282282
toJSON (CI cs) = object
283283
[ "name" .= str "Build and release"
284-
, "on" .= object [ "push" .= [object ["tags" .= [str "*"]]]
285-
, "schedule" .= [object ["cron" .= str "0 2 * * 1"]]
284+
, "on" .= object [ "push" .= object ["tags" .= [str "*"]]
285+
, "schedule" .= [object ["cron" .= str "0 2 * * 1"]]
286286
]
287287
, "env" .= object
288288
[ "CABAL_CACHE_DISABLE" .= str "${{ vars.CABAL_CACHE_DISABLE }}"

‎.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4195,7 +4195,7 @@ jobs:
41954195
name: Build and release
41964196
'on':
41974197
push:
4198-
- tags:
4198+
tags:
41994199
- '*'
42004200
schedule:
42014201
- cron: 0 2 * * 1

0 commit comments

Comments
 (0)