Skip to content

Merge pull request #62 from ethdebug/fix-comments #28

Merge pull request #62 from ethdebug/fix-comments

Merge pull request #62 from ethdebug/fix-comments #28

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'