Skip to content

Merge pull request #77 from ethdebug/pointer-schema #44

Merge pull request #77 from ethdebug/pointer-schema

Merge pull request #77 from ethdebug/pointer-schema #44

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build website
run: yarn build
working-directory: ./packages/web
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./packages/web/build
# default deployer
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'