Skip to content

Add screenshot and demo video to README #4

Add screenshot and demo video to README

Add screenshot and demo video to README #4

Workflow file for this run

name: GitHub Pages
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup GitHub Pages
id: pages
uses: actions/configure-pages@v5
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Build site
run: bun install && bun run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './dist'
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4