Skip to content

Add clarification about bo/goats #48

Add clarification about bo/goats

Add clarification about bo/goats #48

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: |
cd website
yarn
yarn build
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: website/build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}