Skip to content

Merge pull request #32 from singyichen/feat-prototype-posthog-json-co… #14

Merge pull request #32 from singyichen/feat-prototype-posthog-json-co…

Merge pull request #32 from singyichen/feat-prototype-posthog-json-co… #14

name: Deploy Prototype to GitHub Pages
on:
push:
branches: [main]
paths: ['design/prototype/**']
workflow_dispatch: # allow manual trigger
concurrency:
group: pages
cancel-in-progress: true
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
name: Deploy
runs-on: ubuntu-24.04
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: design/prototype/
- uses: actions/deploy-pages@v4
id: deployment