mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-10 00:03:24 +00:00
21 lines
510 B
YAML
21 lines
510 B
YAML
|
name: deploy_docs
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
permissions:
|
||
|
contents: write
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: ./.github/actions/setup_project
|
||
|
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
|
||
|
- uses: actions/cache@v3
|
||
|
with:
|
||
|
key: mkdocs-material-${{ env.cache_id }}
|
||
|
path: .cache
|
||
|
restore-keys: |
|
||
|
mkdocs-material-
|
||
|
- run: poetry run mkdocs gh-deploy --force
|