Skip to content

other: Added override packages to devDependencies #159

other: Added override packages to devDependencies

other: Added override packages to devDependencies #159

name: Deploy GH-Pages
on:
workflow_dispatch:
push:
branches: [ docs ]
schedule:
- cron: '1 18 * * *' # Run at 6:01 pm every day.
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v4.0.0
with:
version: 8.x.x
run_install: false
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build files and bundle them using Parcel
run: pnpm run prod-build
- name: Add Local Identification Config
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions"
- name: Commit changes to gh-pages
run: |
git add .
git commit -m "Updated parcel build"
git push origin +docs:gh-pages --force