Skip to content

Merge pull request #153 from ethdebug/context-descriptions #97

Merge pull request #153 from ethdebug/context-descriptions

Merge pull request #153 from ethdebug/context-descriptions #97

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: BASE_URL='/format/' yarn build
working-directory: ./packages/web
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
folder: ./packages/web/build
branch: gh-pages
# default deployer
git-config-name: 'github-actions[bot]'
git-config-email: 'github-actions[bot]@users.noreply.github.com'
# don't break preview deployments
clean-exclude: pr-preview
force: false