Skip to content

Switch to smaller images #2

Switch to smaller images

Switch to smaller images #2

Workflow file for this run

name: Release
on:
push:
branches:
- "main"
jobs:
release:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Install dependencies
run: yarn
- name: Compile
run: yarn build
- name: Build website
run: yarn prerender
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist