-
Notifications
You must be signed in to change notification settings - Fork 81
81 lines (77 loc) · 2.33 KB
/
tbd-cms.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Test, Build, Deploy - CMS
on:
push:
paths:
- cms/**
- .github/workflows/tbd-cms.yml
pull_request:
paths:
- cms/**
- .github/workflows/tbd-cms.yml
workflow_dispatch:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
cache-dependency-path: cms/pnpm-lock.yaml
- name: Install dependencies
working-directory: cms
run: pnpm install
- name: Test and Build
working-directory: cms
run: pnpm t
env:
SANITY_STUDIO_PROJECT: ${{ secrets.SANITY_PROJECT_ID }}
SANITY_STUDIO_PROD_DATASET: ${{ secrets.SANITY_DATASET }}
SANITY_STUDIO_DEV_DATASET: ${{ secrets.SANITY_DEV_DATASET }}
#########################
## Deploy site to Sanity
#########################
deploy:
needs: test-build
# Siwtch to refs/heads/main when merged
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
concurrency:
group: cms-deploy
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
cache-dependency-path: cms/pnpm-lock.yaml
- name: Install dependencies
working-directory: cms
run: pnpm install
- name: Deploy
working-directory: cms
run: pnpm run deploy
env:
SANITY_AUTH_TOKEN: ${{ secrets.SANITY_DEPLOY_TOKEN }}
SANITY_STUDIO_PROJECT: ${{ secrets.SANITY_PROJECT_ID }}
SANITY_STUDIO_PROD_DATASET: ${{ secrets.SANITY_DATASET }}
SANITY_STUDIO_PREVIEW_KEY: ${{ secrets.PREVIEW_KEY }}