mirror of
https://github.com/jung-geun/NFD2NFC.git
synced 2026-06-21 04:15:14 +09:00
첫 배포 시 'Get Pages site failed. Not Found' 오류 수정. actions/configure-pages@v5 의 enablement: true 옵션으로 repo Pages 설정이 없을 때 자동으로 GitHub Actions source 로 활성화. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
50 lines
979 B
YAML
50 lines
979 B
YAML
name: Deploy web to Pages
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'web/**'
|
|
- 'src/core/filter.ts'
|
|
- 'package.json'
|
|
- 'package-lock.json'
|
|
- '.github/workflows/pages.yml'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
concurrency:
|
|
group: pages
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20.x'
|
|
cache: 'npm'
|
|
- run: npm ci
|
|
- run: npm run web:build
|
|
- uses: actions/configure-pages@v5
|
|
with:
|
|
enablement: true
|
|
- uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
path: dist-web
|
|
|
|
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
|