Skip to content

github-actions(deps): bump docker/login-action from 1 to 2 (#276) #62

github-actions(deps): bump docker/login-action from 1 to 2 (#276)

github-actions(deps): bump docker/login-action from 1 to 2 (#276) #62

Workflow file for this run

---
name: publish documentation
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: mkdocs build --strict
- name: Setup Pages
uses: actions/configure-pages@v1
- uses: actions/upload-pages-artifact@v1
with:
path: site/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1