06c4289999
Docs deploy to GitHub Pages from develop for faster iteration cycles. Main was failing the deploy step with "Branch 'main' is not allowed to deploy to github-pages due to environment protection rules" on every release merge (v3.2.0, v3.3.0) — noise without signal, since docs weren't meant to serve from main anyway. Removes main from both the push trigger and the deploy-job guard. Develop continues to deploy as before; manual dispatch still works.
67 lines
1.4 KiB
YAML
67 lines
1.4 KiB
YAML
name: Deploy Docs
|
|
|
|
on:
|
|
push:
|
|
branches: [develop]
|
|
paths:
|
|
- ".github/workflows/deploy-docs.yml"
|
|
- "website/**"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
concurrency:
|
|
group: pages-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Configure GitHub Pages
|
|
id: pages
|
|
uses: actions/configure-pages@v5
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: 1.1.38
|
|
|
|
- name: Install dependencies
|
|
working-directory: website
|
|
run: bun install --frozen-lockfile
|
|
|
|
- name: Build docs
|
|
working-directory: website
|
|
env:
|
|
DOCS_BASE: ${{ steps.pages.outputs.base_path }}
|
|
DOCS_EDIT_BRANCH: ${{ github.ref_name }}
|
|
run: bun run docs:build
|
|
|
|
- uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
path: website/.vitepress/dist
|
|
|
|
deploy:
|
|
if: github.ref_name == 'develop'
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pages: write
|
|
id-token: write
|
|
steps:
|
|
- name: Deploy to GitHub Pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v4
|