Skip to content

Commit ed8e274

Browse files
authored
Fix duckscript, again (#5054)
1 parent 3d4e23c commit ed8e274

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
- nightly
2828
schedule:
2929
# Run nightly cronjob CI every day at 14 UTC / 6AM PST / 3PM CET
30-
- cron: '33 * * * *'
30+
- cron: '24 * * * *'
3131
# Run beta slightly later
3232
- cron: '1 * * * *'
3333

Makefile.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,12 +296,12 @@ echo "set-ci-toolchain: GITHUB_EVENT_NAME is ${event_name}"
296296
# We need to parse the channel information for dispatch/schedule events
297297
is_workflow = eq "${event_name}" "workflow_dispatch"
298298
is_schedule = eq "${event_name}" "schedule"
299-
if ${is_workflow} or $is_schedule}
299+
if ${is_workflow} or ${is_schedule}
300300
event_path = get_env GITHUB_EVENT_PATH
301301
event_file = readfile ${event_path}
302302
event_json = json_parse ${event_file}
303303
# For dispatch events
304-
if is_workflow
304+
if ${is_workflow}
305305
echo "set-ci-toolchain: manually selected channel is ${event_json.inputs.channel}"
306306
if not eq "${event_json.inputs.channel}" "pinned-stable"
307307
needs_override = set true

0 commit comments

Comments
 (0)