Skip to content

Merge pull request #47 from SGSSGene/dependabot/github_actions/iv-pro… #2

Merge pull request #47 from SGSSGene/dependabot/github_actions/iv-pro…

Merge pull request #47 from SGSSGene/dependabot/github_actions/iv-pro… #2

# SPDX-FileCopyrightText: 2006-2023, Knut Reinert & Freie Universität Berlin
# SPDX-FileCopyrightText: 2016-2023, Knut Reinert & MPI für molekulare Genetik
# SPDX-License-Identifier: CC0-1.0
name: Publish Docs
on:
push:
branches:
- main
env:
TZ: Europe/Berlin
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- 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: pip install mkdocs-material mkdocs-include-markdown-plugin
- run: TZ=UTC mkdocs gh-deploy --force