Skip to content

Update render-spec.yml #2

Update render-spec.yml

Update render-spec.yml #2

Workflow file for this run

name: render-spec
on:
push:
branches:
- main
jobs:
build-and-deploy-spec:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./spec
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install and Build 🔧
run: |
npm install
npm run build
- name: Deploy
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./spec/build
allow_empty_commit: true
force_orphan: true