Skip to content

upgrade to latest greenwood v0.29.0 (#2) #7

upgrade to latest greenwood v0.29.0 (#2)

upgrade to latest greenwood v0.29.0 (#2) #7

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18.12.1
- name: Install Dependencies
run: |
npm ci
- name: Build
run: |
npm run build
- name: Deploy GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public