-
Notifications
You must be signed in to change notification settings - Fork 23
215 lines (179 loc) · 6.42 KB
/
release.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
name: release
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
workflow_dispatch:
inputs:
environment:
description: 'Select the deployment environment'
required: true
type: choice
options:
- production
- staging
jobs:
set-version-tag:
runs-on: ubuntu-22.04
environment: ${{ github.event.inputs.environment || 'production' }}
outputs:
version_tag: ${{ steps.set-version-tag.outputs.version_tag }}
env:
GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set version tag
id: set-version-tag
run: |
VERSION_TAG=$(./scripts/version_tag)
echo "VERSION_TAG=${VERSION_TAG}" >> "${GITHUB_ENV}"
echo "version_tag=${VERSION_TAG}" >> "${GITHUB_OUTPUT}"
- name: Create tag
run: |
./scripts/create_tag
build-amd64:
needs: set-version-tag
runs-on: ubuntu-22.04
environment: ${{ github.event.inputs.environment || 'production' }}
strategy:
matrix:
target: [code-indexer, terrat-ee, terrat-oss]
env:
VERSION_TAG: ${{ needs.set-version-tag.outputs.version_tag }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TERRATEAM_UI_ANALYTICS: ${{ github.event.inputs.environment == 'production' && vars.TERRATEAM_POSTHOG_TOKEN || 'false' }}
TERRATEAM_ENVIRONMENT: ${{ github.event.inputs.environment || 'production' }}
MATRIX_TARGET: ${{ matrix.target }}
permissions:
contents: write
packages: write
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-tags: true
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set base image
run: |
./scripts/base_image >> $GITHUB_ENV
- name: Build and push ${{ matrix.target }} (amd64)
uses: docker/build-push-action@v6
with:
context: .
file: docker/terrat/Dockerfile
push: true
target: ${{ matrix.target }}
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}
tags: ghcr.io/${{ github.repository_owner }}/${{ matrix.target }}:${{ env.VERSION_TAG }}-amd64
build-arm64:
if: false
needs: set-version-tag
runs-on: ubuntu-22.04-arm64
environment: ${{ github.event.inputs.environment || 'production' }}
strategy:
matrix:
target: [code-indexer, terrat-ee, terrat-oss]
env:
VERSION_TAG: ${{ needs.set-version-tag.outputs.version_tag }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TERRATEAM_UI_ANALYTICS: ${{ github.event.inputs.environment == 'production' && vars.TERRATEAM_POSTHOG_TOKEN || 'false' }}
TERRATEAM_ENVIRONMENT: ${{ github.event.inputs.environment || 'production' }}
MATRIX_TARGET: ${{ matrix.target }}
permissions:
contents: write
packages: write
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-tags: true
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set base image
run: |
./scripts/base_image >> $GITHUB_ENV
- name: Build and push ${{ matrix.target }} (arm64)
uses: docker/build-push-action@v6
with:
context: .
file: docker/terrat/Dockerfile
push: true
target: ${{ matrix.target }}
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}
tags: ghcr.io/${{ github.repository_owner }}/${{ matrix.target }}:${{ env.VERSION_TAG }}-arm64
create-multi-arch-manifest:
needs: [set-version-tag, build-amd64]
runs-on: ubuntu-22.04
outputs:
is_latest_version_tag: ${{ steps.is-latest-version-tag.outputs.is_latest_version_tag }}
env:
VERSION_TAG: ${{ needs.set-version-tag.outputs.version_tag }}
GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }}
GITHUB_REF: ${{ github.ref }}
TERRATEAM_ENVIRONMENT: ${{ github.event.inputs.environment || 'production' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set is latest version tag
id: is-latest-version-tag
run: |
is_latest_version_tag="$(./scripts/is_latest_version_tag)"
echo "IS_LATEST_VERSION_TAG=${is_latest_version_tag}" >> "${GITHUB_ENV}"
echo "is_latest_version_tag=${is_latest_version_tag}" >> "${GITHUB_OUTPUT}"
- name: Create and push multi-arch manifest
run: |
./scripts/create_manifest code-indexer terrat-ee terrat-oss
release-notify:
needs: [set-version-tag, create-multi-arch-manifest]
runs-on: ubuntu-22.04
environment: ${{ github.event.inputs.environment || 'production' }}
env:
VERSION_TAG: ${{ needs.set-version-tag.outputs.version_tag }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
TERRATEAM_ENVIRONMENT: ${{ github.event.inputs.environment || 'production' }}
GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }}
GITHUB_REPOSITORY: ${{ github.repository }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-tags: true
- name: Create release
run: |
./scripts/create_release
- name: Notify Slack
run: |
./scripts/notify_slack
deploy:
needs: [set-version-tag, release-notify, create-multi-arch-manifest]
if: ${{ needs.create-multi-arch-manifest.outputs.is_latest_version_tag == 'true' }}
uses: ./.github/workflows/deploy.yml
with:
environment: ${{ github.event.inputs.environment || 'production' }}
VERSION_TAG: ${{ needs.set-version-tag.outputs.version_tag }}
secrets: inherit