Skip to content

docs

docs #1

Workflow file for this run

name: Deploy pages
on: push
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build -- --base /${{ github.event.repository.name }}/
- name: Deploy pages
uses: crazy-max/[email protected]
with:
target_branch: gh-pages
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}