Skip to content

v2.0.4

v2.0.4 #26

Workflow file for this run

name: Deploy to GitHub Pages
on:
release:
types: [created]
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.x
cache: yarn
- name: Build website
working-directory: .
run: |
yarn install --frozen-lockfile
yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
user_name: ${{ secrets.NAME }}
user_email: ${{ secrets.EMAIL }}