We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c33387b commit 3613570Copy full SHA for 3613570
.github/workflows/publish_page.yml
@@ -1,21 +1,24 @@
1
name: Publish remote docs via GitHub Pages
2
on:
3
- workflow_dispatch:
+ schedule:
4
+ # Run every saturday at 00:00
5
+ - cron: '0 0 * * 6'
6
+ workflow_dispatch:
7
8
jobs:
9
build:
10
name: Deploy docs
11
runs-on: ubuntu-latest
12
steps:
- - name: Checkout main
13
+ - name: Checkout master
14
uses: actions/checkout@v4
15
- name: Checkout photobooth
16
17
with:
18
repository: PhotoboothProject/photobooth
19
path: photobooth
20
submodules: true
- - name: Deploy docs
21
+ - name: Deploy and publish docs
22
uses: andi34/mkdocs-deploy-gh-pages@nomaterial
23
env:
24
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments