diff options
author | Yifei Ding <dingyifeiair@gmail.com> | 2022-02-14 08:29:41 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 11:29:41 -0500 |
commit | 61329049a65fa2526e7b7039cd84bdbc7f9700c5 (patch) | |
tree | 333cb0fd098c67d875510ca8dbdc7ef3a3d3b234 /.github/workflows | |
parent | f0241d7dec0dc78133befba2b32397ecd72ccbf5 (diff) | |
download | kutter-61329049a65fa2526e7b7039cd84bdbc7f9700c5.tar.gz kutter-61329049a65fa2526e7b7039cd84bdbc7f9700c5.tar.xz kutter-61329049a65fa2526e7b7039cd84bdbc7f9700c5.zip |
docs: Mkdocs i18n support (#5072)
Signed-off-by: Yifei DIng <yifeiding@protonmail.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/klipper3d-deploy.yaml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/klipper3d-deploy.yaml b/.github/workflows/klipper3d-deploy.yaml index 812931c7..0124317b 100644 --- a/.github/workflows/klipper3d-deploy.yaml +++ b/.github/workflows/klipper3d-deploy.yaml @@ -7,6 +7,8 @@ on: - docs/** - mkdocs.yml - .github/workflows/klipper3d-deploy.yaml + schedule: + - cron: "0 0 * * *" jobs: deploy: runs-on: ubuntu-latest @@ -24,6 +26,8 @@ jobs: ${{ runner.os }}-pip- - name: Install dependencies run: pip install -r docs/_klipper3d/mkdocs-requirements.txt + - name: Fetch translations + run: docs/_klipper3d/fetch-translations.sh - name: Build and deploy klipper3d run: | mkdocs gh-deploy --config-file docs/_klipper3d/mkdocs.yml --remote-branch gh-pages --force --verbose |