0e632df85d
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
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@v6
|
|
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
|