Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build nightlies every day. #6681

Merged
merged 2 commits into from May 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
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
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