-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (51 loc) · 1.63 KB
/
deploy-gae.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
49
50
51
name: Deploy to GAE
on:
push:
branches:
- "stg"
- "release"
jobs:
auto_deploy_gae:
permissions: write-all
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- name: Setup Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18
- uses: actions/checkout@v2
- name: "Extract branch name"
id: branch-name
shell: bash
run: |
short_ref=${GITHUB_REF#refs/*/}
formatted_ref=$(echo "$short_ref" | tr '[:upper:]' '[:lower:]' | tr '/' '-')
echo "short_ref=${formatted_ref}" >> $GITHUB_ENV
- name: configure service name
run: |
if [[ "${{ env.short_ref }}" == "release" ]]; then
sed -i 's/{{service_name}}/tokiwa23/' app.yaml
echo "BASE_URL=/23/tokiwa/" >> .env
elif [[ "${{ env.short_ref }}" == "stg" ]]; then
sed -i 's/{{service_name}}/tokiwa23-stg/' app.yaml
echo "BASE_URL=/stg/23/tokiwa/" >> .env
fi
# switch service name to configure deployment target appropriately
- name: Download events.json from external URL
run: |
curl "${{ secrets.EVENTS_DATA_URL }}" -o ./assets/data/events.json
- name: yarn install
run: yarn install
- name: yarn build
run: yarn build
- id: "auth"
uses: "google-github-actions/auth@v0"
with:
credentials_json: "${{ secrets.GCP_SA_KEY }}"
- name: "Deploy to App Engine"
id: "deploy"
uses: "google-github-actions/deploy-appengine@v0"
with:
deliverables: "app.yaml"
promote: true