Skip to content

fix(workflow-docs): Replace peaceiris/actions-gh-pages with actions/deploy-pages #257

fix(workflow-docs): Replace peaceiris/actions-gh-pages with actions/deploy-pages

fix(workflow-docs): Replace peaceiris/actions-gh-pages with actions/deploy-pages #257

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Docs
on:
push:
branches: [ master ]
# for testing purpose
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
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
steps:
- uses: actions/checkout@v2
- name: Using Node.js 20 (LTS)
uses: actions/setup-node@v2
with:
node-version: '20.x'
cache: 'npm'
- run: npm install
- run: npm run docs
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4