Skip to content

fix: add null guards to DrawingCanvas and restrict image proxy to AoP… #15

fix: add null guards to DrawingCanvas and restrict image proxy to AoP…

fix: add null guards to DrawingCanvas and restrict image proxy to AoP… #15

Workflow file for this run

name: Deploy Site to GitHub Pages
on:
push:
branches: [main]
paths-ignore:
- 'worker/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install
- run: bun run build
- uses: actions/upload-pages-artifact@v3
with:
path: build
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4