Skip to content

Commit 3613570

Browse files
authored
publish_page: run weekly
1 parent c33387b commit 3613570

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/publish_page.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
name: Publish remote docs via GitHub Pages
22
on:
3-
workflow_dispatch:
3+
schedule:
4+
# Run every saturday at 00:00
5+
- cron: '0 0 * * 6'
6+
workflow_dispatch:
47

58
jobs:
69
build:
710
name: Deploy docs
811
runs-on: ubuntu-latest
912
steps:
10-
- name: Checkout main
13+
- name: Checkout master
1114
uses: actions/checkout@v4
1215
- name: Checkout photobooth
1316
uses: actions/checkout@v4
1417
with:
1518
repository: PhotoboothProject/photobooth
1619
path: photobooth
1720
submodules: true
18-
- name: Deploy docs
21+
- name: Deploy and publish docs
1922
uses: andi34/mkdocs-deploy-gh-pages@nomaterial
2023
env:
2124
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)