Skip to content

Fix broken link

Fix broken link #28

Workflow file for this run

name: Build and deploy
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Python dependencies
run: |
python3 -m pip install -r requirements.txt
- name: Build web
run: |
python3 build.py
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: docs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1