Skip to content

Commit

Permalink
Add cronjob to update releases
Browse files Browse the repository at this point in the history
  • Loading branch information
rafmudaf committed Dec 19, 2024
1 parent fb1d0da commit 724da1c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deploy-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ on:
# - develop
paths:
- docs/**
schedule:
# https://crontab.guru/#00_00_*_*_2,4,6
# "At 00:00 on Tuesday, Thursday, and Saturday."
# Time zone for GitHub is UTC, so adjust accordingly; -6 in the summer, -7 in the winter.
# Therefore, this runs at 6:00 PM Mountain Time on Monday, Wednesday, and Friday.
- cron: '00 00 * * 2,4,6'

# This job installs dependencies, builds the book, and pushes it to `gh-pages`
jobs:
Expand Down

0 comments on commit 724da1c

Please sign in to comment.