Skip to content

Update readme (#66) #10

Update readme (#66)

Update readme (#66) #10

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: yarn
- run: yarn build
- name: Deploy
uses: peaceiris/actions-gh-pages@v2
env:
PERSONAL_TOKEN: ${{ secrets.GH_PAGES_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: ./dist