-
Notifications
You must be signed in to change notification settings - Fork 102
115 lines (94 loc) · 2.61 KB
/
deploy-to-production.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: Deploy to Production
on:
push:
branches:
- main
paths-ignore:
- '.github/**'
- '.docsearch/**'
- 'README.md'
- '.gitpod.yml'
workflow_dispatch:
env:
ALGOLIA_APP_ID: ${{secrets.ALGOLIA_APP_ID}}
ALGOLIA_KEY: ${{secrets.ALGOLIA_KEY}}
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
jobs:
deploy-staging:
runs-on: ubuntu-latest
env:
NO_INDEX: true
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # For correct author and date information on pages.
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Google Cloud Login
uses: google-github-actions/auth@v2
with:
credentials_json: '${{ secrets.RUN_SA_KEY }}'
- name: Setup Google Cloud SDK
uses: 'google-github-actions/setup-gcloud@v2'
with:
project_id: ${{ secrets.RUN_PROJECT }}
env:
CLOUDSDK_PYTHON: ${{ env.pythonLocation }}/python
- name: Install Dependencies
run: |
npm install
- name: Build
run: |
npm run build
- name: Deploy
working-directory: build
run: |-
gsutil -m rsync -R -d . ${{ secrets.GCS_BUCKET }}
deploy-production:
needs: deploy-staging
runs-on: ubuntu-latest
env:
NO_INDEX: false
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # For correct author and date information on pages.
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Google Cloud Login
uses: google-github-actions/auth@v2
with:
credentials_json: '${{ secrets.RUN_SA_KEY_PROD }}'
- name: Setup Google Cloud SDK
uses: 'google-github-actions/setup-gcloud@v2'
with:
project_id: ${{ secrets.RUN_PROJECT_PROD }}
env:
CLOUDSDK_PYTHON: ${{ env.pythonLocation }}/python
- name: Install Dependencies
run: |
npm install
- name: Build
run: |
npm run build
- name: Deploy
working-directory: build
run: |-
gsutil -m rsync -R -d . ${{ secrets.GCS_PROD_BUCKET }}