Skip to content

feat: wip

feat: wip #25

Workflow file for this run

name: Build and Deploy Docs
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@master
- name: Versions
run: yarn versions
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build docs
run: yarn docs:build
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v2
env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: ./dist
with:
emptyCommits: false