Skip to content

Update deploy.yml

Update deploy.yml #14

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main] # or your default branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Bun
uses: oven-sh/setup-bun@v1
- name: Install and Build
run: |
bun install
bun run build-only
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: ./dist # Adjust if your build output is elsewhere