SPB Git

spb/zyquo-cloud-web Public MIT

Zyquo Cloud Web — every cloud model, one beautiful chat, entirely in your browser.

TypeScript 81.9% CSS 8.9% JavaScript 7.5% Shell 1.1% HTML 0.6%
1.1 KB · 54 lines yaml
Raw Blame History
1#2#  deploy-pages.yml3#  Zyquo Cloud Web4#5#  Author: Simon-Pierre Boucher6#  Mail: contact@spboucher.ai7#8#  Builds and deploys the static bundle to GitHub Pages on every push to main.9#  The primary deployment remains https://www.zyquo.cloud — Pages is a public10#  mirror built with the /zyquo-cloud-web/ base path.11#1213name: Deploy to GitHub Pages1415on:16  push:17    branches: [main]18  workflow_dispatch:1920permissions:21  contents: read22  pages: write23  id-token: write2425concurrency:26  group: pages27  cancel-in-progress: true2829jobs:30  build:31    runs-on: ubuntu-latest32    steps:33      - uses: actions/checkout@v434      - uses: actions/setup-node@v435        with:36          node-version: 2237          cache: npm38      - run: npm ci39      - run: npm run build40        env:41          VITE_BASE: /zyquo-cloud-web/42      - uses: actions/upload-pages-artifact@v343        with:44          path: dist45  deploy:46    needs: build47    runs-on: ubuntu-latest48    environment:49      name: github-pages50      url: ${{ steps.deployment.outputs.page_url }}51    steps:52      - id: deployment53        uses: actions/deploy-pages@v454