Skip to content

feat: draw the icon as a hand mid-sign, since a still palm is not a sign #57

feat: draw the icon as a hand mid-sign, since a still palm is not a sign

feat: draw the icon as a hand mid-sign, since a still palm is not a sign #57

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
# Never cancel a deploy in flight. Cancelling the *run* does not cancel the Pages
# *deployment* it already queued, and that orphan blocks the queue: every later run then
# sits in `deployment_queued` until it times out. Three merges in quick succession did
# exactly that on 2026-08-06 and the site stayed on the previous bundle for an hour.
cancel-in-progress: false
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run build
- uses: actions/configure-pages@v6
- uses: actions/upload-pages-artifact@v5
with:
path: dist
- id: deploy
uses: actions/deploy-pages@v5