Skip to content

Publish

Publish #139

Workflow file for this run

name: Deploy Doc Website
on:
push:
branches:
- master
jobs:
master-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn
- name: Bootstrap
run: yarn bootstrap
- name: Build Pkgs
run: yarn build:lib
- name: Build Example
run: yarn build:hash
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: dist