mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2026-07-23 10:55:47 +08:00
configure-pages failed with 'Get Pages site failed: Not Found' because the repository has Pages disabled; enablement: true creates the Pages site on first run. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01XzXuVcjCFcBhTQT1wsEANC
34 lines
711 B
YAML
34 lines
711 B
YAML
name: Deploy Nutq to GitHub Pages
|
|
|
|
on:
|
|
push:
|
|
branches: [main, claude/mobile-desktop-app-y1g2sm]
|
|
paths: ["nutq/**", ".github/workflows/deploy-nutq.yml"]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
concurrency:
|
|
group: pages
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/configure-pages@v5
|
|
with:
|
|
enablement: true
|
|
- uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
path: nutq
|
|
- id: deployment
|
|
uses: actions/deploy-pages@v4
|