Update inventory.md #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# automatically deploys the documentation on github pages | |
--- | |
name: ci | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/kth-expeca/mkdocs-material-insiders | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GHCR_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- run: pip install mkdocs-material mkdocs-awesome-pages-plugin mkdocs-git-revision-date-localized-plugin mkdocs-meta-descriptions-plugin | |
- run: git config --global --add safe.directory '/__w/kth-expeca.github.io/kth-expeca.github.io' | |
- run: mkdocs gh-deploy --force | |
... |