Skip to content

v1.3.0

v1.3.0 #5

Workflow file for this run

name: Deploy
on:
release:
types: [released] # triggered on main branch releases
jobs:
deploy:
name: "Deploy"
runs-on: ubuntu-latest
steps:
- name: "🛎 Checkout"
uses: actions/checkout@v3
- name: "🔧 Setup"
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: "📦 Install"
run: yarn install --frozen-lockfile
- name: "🏗️ Build"
run: yarn build
- name: "🚀 Deploy"
uses: peaceiris/actions-gh-pages@v3
with:
force_orphan: true
personal_token: ${{ secrets.WRITE_REPOS_TOKEN }}
publish_branch: gh-pages
publish_dir: ./build
user_name: agoralabs-bot
user_email: [email protected]