Skip to content

Bump webpack from 5.91.0 to 5.94.0 (#84) #112

Bump webpack from 5.91.0 to 5.94.0 (#84)

Bump webpack from 5.91.0 to 5.94.0 (#84) #112

Workflow file for this run

name: Website Deploy
on:
workflow_dispatch: {}
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- name: Clone
uses: actions/checkout@v3
with:
fetch-depth: 0 # all history & all branches
- name: Setup
uses: actions/setup-node@v2
with:
node-version: 20
cache: npm
- name: Build
run: npm ci && npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out