Skip to content

Layout polish, About improvements, and site-wide component refactors … #37

Layout polish, About improvements, and site-wide component refactors …

Layout polish, About improvements, and site-wide component refactors … #37

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
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@v3
with:
github_token: ${{ secrets.DEPLOY_TOKEN }}
publish_dir: ./out