From a164f1b83937a18cc0ad0a405122b83bf0f980b3 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Fri, 17 Jan 2025 14:48:12 +0530 Subject: [PATCH] [web] Deploy only on weekdays --- .github/workflows/web-deploy.yml | 4 ++-- desktop/.github/workflows/desktop-release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/web-deploy.yml b/.github/workflows/web-deploy.yml index 6f6a113f24e..3cdb03dea8a 100644 --- a/.github/workflows/web-deploy.yml +++ b/.github/workflows/web-deploy.yml @@ -4,7 +4,7 @@ on: schedule: # [Note: Run workflow every 24 hours] # - # Run everyday at ~8:00 AM IST (except Sundays). + # Run every weekday at ~8:00 AM IST. # # First field is minute, second is hour of the day. Last is day of week, # 0 being Sunday. @@ -15,7 +15,7 @@ on: # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule # https://crontab.guru/ # - - cron: "25 2 * * 1-6" + - cron: "25 2 * * 1-5" # Also allow manually running the workflow workflow_dispatch: diff --git a/desktop/.github/workflows/desktop-release.yml b/desktop/.github/workflows/desktop-release.yml index 610b9343d49..26128208789 100644 --- a/desktop/.github/workflows/desktop-release.yml +++ b/desktop/.github/workflows/desktop-release.yml @@ -12,10 +12,10 @@ on: description: "Branch (ente-io/ente) to build" type: string schedule: - # Run everyday at ~8:00 AM IST (except Sundays). + # Run every weekday at ~8:00 AM IST. # See: [Note: Run workflow every 24 hours] # - - cron: "45 2 * * 1-6" + - cron: "45 2 * * 1-5" push: # Run when a tag matching the pattern "vd.d.d" is pushed. In particular, # this excludes the "-beta" tags.