Skip to content

Merge pull request #57 from ethdebug/spec-cleanup #24

Merge pull request #57 from ethdebug/spec-cleanup

Merge pull request #57 from ethdebug/spec-cleanup #24

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: ./web/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
working-directory: ./web
- name: Build website
run: yarn build
working-directory: ./web
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./web/build
# default deployer
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'