Skip to content

switch to production env #76

switch to production env

switch to production env #76

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- source
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "14.x"
- name: Install Dependencies
run: yarn
- run: yarn build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: master
force_orphan: true