Skip to content

Merge pull request #1453 from activerecord-hackery/misc-bumps #73

Merge pull request #1453 from activerecord-hackery/misc-bumps

Merge pull request #1453 from activerecord-hackery/misc-bumps #73

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
cache-dependency-path: docs/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
working-directory: docs
- name: Build website
run: yarn build
working-directory: docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build