mirror of
https://github.com/basketikun/infinite-canvas.git
synced 2026-07-24 23:28:35 +08:00
53 lines
1012 B
YAML
53 lines
1012 B
YAML
name: GitHub Pages
|
|
|
|
on:
|
|
push:
|
|
tags: ["v*"]
|
|
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
|
|
|
|
- name: Install dependencies
|
|
working-directory: web
|
|
run: bun install --frozen-lockfile
|
|
|
|
- name: Build
|
|
working-directory: web
|
|
env:
|
|
VITE_BASE: /${{ github.event.repository.name }}/
|
|
run: bun run build
|
|
|
|
- name: Add SPA fallback
|
|
run: cp web/dist/index.html web/dist/404.html
|
|
|
|
- uses: actions/configure-pages@v5
|
|
|
|
- uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
path: web/dist
|
|
|
|
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
|