Skip to content

Serialization for Recurrence #61

Serialization for Recurrence

Serialization for Recurrence #61

Workflow file for this run

name: Deploy to GitHub Pages
on:
workflow_dispatch: # can be triggered manually
push:
branches: "main"
jobs:
build_site:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm install
- name: build
env:
BASE_PATH: "/${{ github.event.repository.name }}"
run: |
npm run build
- name: Deploy to the gh-pages branch
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: build
clean: true