Skip to content

Deploy to GitHub Pages #48

Deploy to GitHub Pages

Deploy to GitHub Pages #48

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
schedule:
- cron: '0 0 * * 1'
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out