forked from nitrictech/nitric
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (29 loc) · 853 Bytes
/
deploy-docs.yaml
File metadata and controls
30 lines (29 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Deploy Docs and Trigger Main Website Build
on:
push:
branches:
- main
paths:
- "docs/**"
jobs:
deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
- name: Install dependencies
run: yarn install
- name: Apply all pending migrations to the database
run: npx prisma migrate deploy
env:
POSTGRES_PRISMA_URL: ${{ secrets.POSTGRES_PRISMA_URL }}
POSTGRES_URL_NON_POOLING: ${{ secrets.POSTGRES_URL_NON_POOLING }}
# Trigger the deployment of the main website for guide updates
- name: Trigger main website build
run: |
curl -X POST ${{ secrets.MAIN_WEBSITE_DEPLOY_URL }}