Skip to content

chore: release flow adjustments #5

chore: release flow adjustments

chore: release flow adjustments #5

Workflow file for this run

name: Deploy Documentation to GitHub Pages
on:
push:
branches:
- main
paths:
- 'docs/**'
- '.github/workflows/deploy-docs.yml'
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: 'pages'
cancel-in-progress: false
jobs:
build:
name: Build Documentation
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
working-directory: ./docs
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
cache-dependency-path: 'docs/yarn.lock'
- name: Setup Pages
uses: actions/configure-pages@v5
with:
static_site_generator: next
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build with Next.js
run: yarn build
env:
BASE_PATH: ${{ github.event.repository.name != 'yourusername.github.io' && format('/{0}', github.event.repository.name) || '' }}
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/out
deploy:
name: Deploy to GitHub Pages
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
timeout-minutes: 5
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4