Skip to content

Update Docusaurus build and Node.js version in changelog-website.yml … #16

Update Docusaurus build and Node.js version in changelog-website.yml …

Update Docusaurus build and Node.js version in changelog-website.yml … #16

name: Deploy to GitHub Pages
on:
push:
branches: ["Production"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
install:
runs-on: ubuntu-latest
name: 📦 Install
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build website
run: yarn build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
deploy:
needs: install
name: 🚀 Deploy
runs-on: ubuntu-latest
environment:
name: Workway Updates
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Download Build Artifact
uses: actions/download-artifact@v3
with:
name: website
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4