Skip to content

Commit

Permalink
Build nightlies every day. (#6681)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwu-tow authored May 15, 2023
1 parent 7748289 commit 1c89430
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name: Nightly Release
on:
schedule:
- cron: 0 2 * * 2-6
- cron: 0 2 * * *
workflow_dispatch: {}
jobs:
promote-nightly:
Expand Down
4 changes: 2 additions & 2 deletions build/build/src/ci_gen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ pub fn changelog() -> Result<Workflow> {
pub fn nightly() -> Result<Workflow> {
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()
};

Expand Down

0 comments on commit 1c89430

Please sign in to comment.