mirror of
https://github.com/0xbow-io/privacy-pools-core.git
synced 2026-01-09 01:17:58 -05:00
55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
name: Deploy docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
pull_request:
|
|
paths:
|
|
- "docs/**"
|
|
branches:
|
|
- dev
|
|
|
|
jobs:
|
|
deploy-docs:
|
|
name: Deploy docs
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: ${{ github.ref_name == 'main' && 'Prod' || 'Dev' }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18'
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
cd docs
|
|
yarn install --frozen-lockfile
|
|
|
|
- name: Build website
|
|
run: |
|
|
cd docs
|
|
yarn build
|
|
|
|
- uses: amondnet/vercel-action@v25
|
|
id: vercel-deployment
|
|
with:
|
|
vercel-token: ${{ secrets.VERCEL_TOKEN }} # Required
|
|
vercel-org-id: ${{ secrets.ORG_ID}} # Required
|
|
scope: ${{ secrets.ORG_ID}} # Required
|
|
vercel-args: '--prod'
|
|
vercel-project-id: ${{ secrets.PROJECT_ID}} # Required
|
|
|
|
- name: Comment PR
|
|
if: github.event_name == 'pull_request'
|
|
uses: thollander/actions-comment-pull-request@v2
|
|
with:
|
|
message: |
|
|
Preview: ${{ steps.vercel-deployment.outputs.preview-url }}
|