@@ -189,7 +189,7 @@ runner AArch64 Windows = error "aarch64 windows not supported"
189
189
-------------------------------------------------------------------------------
190
190
-- Action generatation
191
191
-------------------------------------------------------------------------------
192
- -- Each x86-linux job has its own action, living in a seperate file
192
+ -- Each x86-linux job has its own action, living in a separate file
193
193
-- The contents of the file are derived from the 'Action' datatype
194
194
--
195
195
-- We do this so that we can run the build in the right kind of OS container,
@@ -199,8 +199,8 @@ runner AArch64 Windows = error "aarch64 windows not supported"
199
199
-- github provided actions, see for instance https://github.com/actions/upload-artifact/issues/489
200
200
-------------------------------------------------------------------------------
201
201
202
- -- | Container actions for x86-linux runners
203
- -- Each of these corresponds to a seperate action file,
202
+ -- | Container actions for x86-linux runners.
203
+ -- Each of these corresponds to a separate action file,
204
204
-- called 'actionName', located at 'actionPath'
205
205
data Action
206
206
= Action
@@ -357,7 +357,7 @@ releaseJob cs =
357
357
358
358
359
359
buildJob :: Arch -> Opsys -> GHC -> Job
360
- buildJob arch os v =
360
+ buildJob arch os v =
361
361
K. fromString (buildJobName arch os v) .= object
362
362
[ " runs-on" .= runner arch os
363
363
, " name" .= str (buildJobName arch os v ++ " (Build binaries)" )
0 commit comments