chore: release (#1807) #114
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Website CD # Continuous Deployment | |
permissions: | |
contents: write | |
on: | |
workflow_dispatch: # Allow manual triggers | |
push: | |
tags: | |
- "release-plz-v*.*.*" | |
jobs: | |
deploy: | |
name: Deploy to GitHub Pages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: npm | |
cache-dependency-path: "website/package-lock.json" | |
- name: Install dependencies | |
run: npm ci | |
working-directory: ./website | |
- name: Markdown lint | |
run: npm run mdlint | |
working-directory: ./website | |
- name: Build website | |
run: npm run build | |
working-directory: ./website | |
# Popular action to deploy to GitHub Pages: | |
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# Build output to publish to the `gh-pages` branch: | |
publish_dir: ./website/build |