Skip to content

chore(deps): bump webpack-dev-middleware from 5.3.3 to 5.3.4 in /webs… #8

chore(deps): bump webpack-dev-middleware from 5.3.3 to 5.3.4 in /webs…

chore(deps): bump webpack-dev-middleware from 5.3.3 to 5.3.4 in /webs… #8

Workflow file for this run

name: Deploy Docusaurus to GitHub Pages
on:
push:
branches:
- main
paths:
- 'website/**'
permissions:
contents: write
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Gulp and Build CSS
run: |
npm install gulp-cli -g
npm install --legacy-peer-deps
gulp
- name: Install Dependencies and Build
run: |
cd website
npm install
npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website/build