Skip to content

fix: bug with forum ignore being watch list too #259

fix: bug with forum ignore being watch list too

fix: bug with forum ignore being watch list too #259

Workflow file for this run

name: Pages
'on':
push:
branches:
- master
workflow_dispatch: {}
jobs:
job:
name: Pages
runs-on: ubuntu-22.04
permissions:
pages: write
id-token: write
contents: read
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Check out source repository
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: ensure pip
run: python3 -m ensurepip
- name: Install requirements.txt
run: pip install -r requirements.txt -c constraints.txt
- name: Build docs
run: mkdocs build
- uses: actions/upload-pages-artifact@v1
with:
name: github-pages
path: './site'
- uses: actions/deploy-pages@v1
id: deployment