Skip to content

Update NAVIGATION.md #51

Update NAVIGATION.md

Update NAVIGATION.md #51

Workflow file for this run

name: Deploy Website
on:
push:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install -U -r requirements.txt
- run: mkdocs build --strict
- uses: actions/upload-pages-artifact@v1
with:
path: 'site'
- id: deployment
if: github.ref_name == 'master'
uses: actions/deploy-pages@v1