Skip to content

fix list

fix list #90

Workflow file for this run

name: github pages
on:
workflow_dispatch:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Upgrade pip
run: |
python3 -m pip install --upgrade pip
- name: Install dependencies
run: python3 -m pip install -r ./requirements.txt
- run: |
cd website
make html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: website/output
cname: www.mlugs.de