Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Update index.js

Update index.js #24

Workflow file for this run

name: ghpages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 15.0.1
- name: install
run: cd docs && yarn
- name: build
run: cd docs && yarn build
- name: deploy-docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build