Skip to content

hide news drawer item behind feature toggle #73

hide news drawer item behind feature toggle

hide news drawer item behind feature toggle #73

Workflow file for this run

name: Documentation
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs
- name: Run mkdocs build
run: mkdocs build -c -d ./build/site
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: './build/site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2