Skip to content

Merge branch 'next' of github.com:kongying-tavern/docs into next #200

Merge branch 'next' of github.com:kongying-tavern/docs into next

Merge branch 'next' of github.com:kongying-tavern/docs into next #200

Workflow file for this run

# @See https://pages.github.com/
name: GITHUB_PAGE
on:
# trigger deployment on every push to main branch
push:
branches:
- main
- next
- dev
# @See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
paths-ignore:
- '**/__tests__/**'
- './README.md'
# trigger deployment manually
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:
docs:
runs-on: ubuntu-latest
strategy:
matrix:
node_version:
- 18
steps:
- uses: actions/checkout@v3
with:
# fetch all commits to get last updated time or other git log info
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
# choose node.js version to use
node-version: '18'
- name: Install dependencies
uses: pnpm/action-setup@v2
with:
run_install: true
- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: pnpm
# run build script
- name: Build site
run: pnpm build
# please check out the docs of the workflow for more details
# @See https://github.com/crazy-max/ghaction-github-pages
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
# deploy to gh-pages branch
target_branch: gh-pages
# deploy the default output dir
build_dir: ./dist
env:
# @See https://docs.github.com/en/actions/reference/authentication-in-a-workflow#about-the-github_token-secret
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}