Skip to content

πŸ”– v3.1.1

πŸ”– v3.1.1 #30

Workflow file for this run

name: Build Example Site
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/[email protected]
with:
persist-credentials: false
- name: β¬’ Use Node.js
uses: actions/setup-node@v2
with:
node-version: 16.14.2
- name: Install and Build πŸ”§
run: yarn && yarn example:build
- name: Deploy πŸš€
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: example/dist
CLEAN: true