Skip to content

Commit

Permalink
[web] Deploy only on weekdays (#4760)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnvr authored Jan 17, 2025
2 parents c69eb1d + a164f1b commit 1bb04f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/web-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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:

Expand Down
4 changes: 2 additions & 2 deletions desktop/.github/workflows/desktop-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1bb04f2

Please sign in to comment.