Skip to content

chore(deps-dev): bump webpack from 5.91.0 to 5.92.0 (#1052) #10

chore(deps-dev): bump webpack from 5.91.0 to 5.92.0 (#1052)

chore(deps-dev): bump webpack from 5.91.0 to 5.92.0 (#1052) #10

Workflow file for this run

name: Deploy Doc Website to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write
defaults:
run:
shell: bash
working-directory: ./website
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- run: npm ci
- name: Build website
run: npm run build
# 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