-
Notifications
You must be signed in to change notification settings - Fork 10
139 lines (119 loc) · 4.31 KB
/
container.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
name: Container
on:
push:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
tagging:
name: Determine Tags
runs-on: ubuntu-20.04
permissions:
contents: read
packages: read
outputs:
FINAL_TAG: ${{ steps.tags.outputs.FINAL_TAG }}
SHA_TAG: ${{ steps.tags.outputs.SHA_TAG }}
steps:
- name: Log in to Container Registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
- name: Extract Docker Metadata
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
id: meta
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
# Tag event produce a semver tag. This will capture tags that begin
# vX.Y.Z and X.Y.Z.
type=semver,pattern={{version}},event=tag
# All other push events (no PR, no semver tag), produce a SHA tag
type=sha,format=long
- name: Determine Final Tag
id: tags
run: |
ALL_TAGS="${{ steps.meta.outputs.tags }}"
SEMVER_TAG=$(echo "$ALL_TAGS" | grep -E '^ghcr.io/.+:[0-9]+\.[0-9]+\.[0-9]+(-rc[0-9]+)?' || true)
SHA_TAG=$(echo "$ALL_TAGS" | grep sha- || true)
if [ -n "$SEMVER_TAG" ]; then
FINAL_TAG="$SEMVER_TAG"
else
FINAL_TAG="$SHA_TAG"
fi
echo "SHA_TAG=$SHA_TAG" >> $GITHUB_OUTPUT
echo "FINAL_TAG=$FINAL_TAG" >> $GITHUB_OUTPUT
- name: Debug Tags
run: |
echo "SHA_TAG: ${{ steps.tags.outputs.SHA_TAG }}"
echo "FINAL_TAG: ${{ steps.tags.outputs.FINAL_TAG }}"
build:
needs: tagging
runs-on: ${{ matrix.runner }}
strategy:
matrix:
include:
- arch: amd64
runner: ubuntu-20.04
- arch: arm64
runner: arm-4core-linux-ubuntu24.04
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
sparse-checkout: .
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
- name: Log in to the Container registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata for Docker
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
id: meta
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=sha,format=long
- name: Build and push Docker image
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
with:
file: Dockerfile
tags: ${{ needs.tagging.outputs.SHA_TAG }}-${{ matrix.arch }}
push: true
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=ghcr.io/datadog/lading:cache
cache-to: type=registry,ref=ghcr.io/datadog/lading:cache,mode=max
manifest:
name: Create Multi-Arch Manifest
needs:
- tagging
- build
runs-on: ubuntu-20.04
permissions:
contents: read
packages: write
steps:
- name: Log in to Container Registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
- name: Create and Push Multiarch Manifest
run: |
docker buildx imagetools create \
--tag "${{ needs.tagging.outputs.FINAL_TAG }}" \
"${{ needs.tagging.outputs.SHA_TAG }}-amd64" \
"${{ needs.tagging.outputs.SHA_TAG }}-arm64"