diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index cc9bce064998..96d825ac518b 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -4,7 +4,7 @@ name: Nightly Release on: schedule: - - cron: 0 2 * * 2-6 + - cron: 0 2 * * * workflow_dispatch: {} jobs: promote-nightly: diff --git a/build/build/src/ci_gen.rs b/build/build/src/ci_gen.rs index afc25ad0f175..1e1400c57f8f 100644 --- a/build/build/src/ci_gen.rs +++ b/build/build/src/ci_gen.rs @@ -293,8 +293,8 @@ pub fn changelog() -> Result { pub fn nightly() -> Result { let on = Event { workflow_dispatch: Some(default()), - // 2am (UTC) from Tuesday to Saturday (i.e. after every workday) - schedule: vec![Schedule::new("0 2 * * 2-6")?], + // 2am (UTC) every day. + schedule: vec![Schedule::new("0 2 * * *")?], ..default() };