-
Notifications
You must be signed in to change notification settings - Fork 10
123 lines (100 loc) · 3.08 KB
/
base.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
name: base
on:
workflow_dispatch:
jobs:
set-version-tag:
runs-on: ubuntu-22.04
environment: production
outputs:
version_tag: ${{ steps.set-version-tag.outputs.version_tag }}
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}"
build-amd64:
needs: set-version-tag
runs-on: ubuntu-22.04
environment: production
permissions:
contents: write
packages: write
id-token: write
env:
VERSION_TAG: ${{ needs.set-version-tag.outputs.version_tag }}
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: Build and push amd64 image
uses: docker/build-push-action@v6
with:
context: .
file: docker/terrat/Dockerfile
push: true
target: build-base
tags: |
ghcr.io/${{ github.repository_owner }}/terrat-base:${{ env.VERSION_TAG }}-amd64
build-arm64:
if: false
needs: set-version-tag
runs-on: ubuntu-22.04-arm64
environment: production
permissions:
contents: write
packages: write
id-token: write
env:
VERSION_TAG: ${{ needs.set-version-tag.outputs.version_tag }}
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: Build and push arm64 image
uses: docker/build-push-action@v6
with:
context: .
file: docker/terrat/Dockerfile
push: true
target: build-base
tags: |
ghcr.io/${{ github.repository_owner }}/terrat-base:${{ env.VERSION_TAG }}-arm64
create-manifest:
needs: [set-version-tag, build-amd64]
runs-on: ubuntu-22.04
environment: production
permissions:
contents: write
packages: write
id-token: write
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: Create and push multi-arch manifest
run: |
./scripts/create_manifest terrat-base