Skip to content

Link the deployed webapp at the top of the README #5

Link the deployed webapp at the top of the README

Link the deployed webapp at the top of the README #5

Workflow file for this run

# Deploys web/ to GitHub Pages, unmodified — no build step, so the served
# files are byte-identical to the repo tree at the deployed commit and can
# be audited against it (see TRUST.md).
name: Deploy webapp to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
with:
enablement: true
- uses: actions/upload-pages-artifact@v3
with:
path: web
- id: deployment
uses: actions/deploy-pages@v4