-
Notifications
You must be signed in to change notification settings - Fork 17
132 lines (119 loc) · 4.15 KB
/
build-and-push.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
name: Build and push to docker
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the dev branch
push:
tags:
- release/*
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
locales:
- locale: en_US
postfix: -en
- locale: zh_TW
postfix: -tw
- locale: ja
postfix: -ja
env:
RELEASE_TAG: ${{ startsWith(github.ref, 'refs/tags/release') && 'latest' || 'dev' }}
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Echo RELEASE_TAG
run: 'echo $RELEASE_TAG'
- name: Checkout repo
uses: actions/checkout@v2
with:
submodules: recursive
- name: Generate staging .env file
run: 'curl $ENV_URL -o .env'
env:
ENV_URL: ${{ secrets.STAGING_ENV_URL }}
if: ${{ env.RELEASE_TAG == 'dev' }}
- name: Generate production .env file
run: 'curl $ENV_URL -o .env'
env:
ENV_URL: ${{ secrets.PRODUCTION_ENV_URL }}${{ matrix.locales.postfix }}
if: ${{ env.RELEASE_TAG == 'latest' }}
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: ./
file: ./Dockerfile
push: true
tags: cofacts/rumors-line-bot:${{ env.RELEASE_TAG }}${{ matrix.locales.postfix }}
build-args: |
"LOCALE=${{ matrix.locales.locale }}"
# Cache for individual languages
# Ref: https://docs.docker.com/build/cache/backends/gha/#scope
cache-from: type=gha,scope=${{env.GITHUB_REF_NAME}}${{matrix.locales.postfix}}
cache-to: type=gha,mode=max,scope=${{env.GITHUB_REF_NAME}}${{matrix.locales.postfix}}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
deploy-staging:
permissions: # Required by google-github-actions/auth
contents: 'read'
id-token: 'write'
needs: build
runs-on: ubuntu-latest
environment:
name: staging
url: https://lin.ee/1QUzEX4nI
if: ${{ !startsWith(github.ref, 'refs/tags/release') }}
steps:
- uses: 'google-github-actions/auth@v1'
with:
workload_identity_provider: ${{ secrets.GC_WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ secrets.GC_SERVICE_ACCOUNT }}
- uses: 'google-github-actions/deploy-cloudrun@v1'
with:
service: dev-line-bot
image: cofacts/rumors-line-bot:dev-tw
region: asia-northeast1
deploy-production:
permissions: # Required by google-github-actions/auth
contents: 'read'
id-token: 'write'
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
locales:
- postfix: -en
url: https://lin.ee/ESe1YU6
- postfix: -tw
url: https://lin.ee/3KCZgIq
- postfix: -ja
url: https://lin.ee/N4m6fYI
environment:
name: production${{matrix.locales.postfix}}
url: ${{matrix.locales.url}}
if: ${{ startsWith(github.ref, 'refs/tags/release') }}
steps:
- uses: 'google-github-actions/auth@v1'
with:
workload_identity_provider: ${{ secrets.GC_WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ secrets.GC_SERVICE_ACCOUNT }}
- uses: 'google-github-actions/deploy-cloudrun@v1'
with:
service: line-bot${{matrix.locales.postfix}}
image: cofacts/rumors-line-bot:latest${{ matrix.locales.postfix }}
region: asia-northeast1