Skip to content

Update App.vue

Update App.vue #7

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
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist # Adjust if your build output is elsewhere