Skip to content

Release 0.9.0 (#80)

Release 0.9.0 (#80) #9

Workflow file for this run

name: Publish Docs
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
publish-docs:
runs-on: macos-12
timeout-minutes: 30
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
steps:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- run: sudo xcode-select --switch /Applications/Xcode_14.1.app
- uses: actions/checkout@v3
- name: Install Vercel CLI
run: npm install -g vercel
- name: Pull Build Configuration
run: vercel pull --token ${{ secrets.VERCEL_TOKEN }}
- name: Build Vercel Package
run: vercel build --prod
- name: Deploy
run: vercel deploy --prod --prebuilt --token ${{ secrets.VERCEL_TOKEN }}