-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (39 loc) · 1.23 KB
/
user-auth-service-deploy.yaml
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
name: Deploy user-auth service to Google App Engine
on:
push:
paths:
- user-auth-service/**
jobs:
deployment:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Create vizia-sa.json file
working-directory: ./user-auth-service
run: |
touch vizia-sa.json
echo "${{ secrets.VIZIA_SERVICE_ACCOUNT }}" >> vizia-sa.json
- name: Create app.yaml file
working-directory: ./user-auth-service
run: |
touch app.yaml
echo "${{ secrets.USER_AUTH_APP_YAML }}" >> app.yaml
- name: Setup Node.js and yarn
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: npm ci
working-directory: ./user-auth-service
- name: Google Cloud Auth
uses: google-github-actions/auth@v2
with:
credentials_json: ${{ secrets.GCP_SA_KEY }}
project_id: ${{ secrets.GCP_PROJECT_ID }}
- name: Set up Cloud SDK
uses: "google-github-actions/setup-gcloud@v2"
- name: Deploy to Google App Engine
run: |
cd user-auth-service
gcloud app deploy app.yaml --quiet