Skip to content

Fix long-standing super annoying PPU scroll bug! #23

Fix long-standing super annoying PPU scroll bug!

Fix long-standing super annoying PPU scroll bug! #23

Workflow file for this run

name: Deploy
on:
push:
branches: ["master"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- uses: extractions/setup-just@v2
- uses: actions/setup-node@v4
with:
node-version: 21
- name: Build
run: just build-web
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'web/dist'
- id: deployment
uses: actions/deploy-pages@v4