-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (56 loc) · 1.92 KB
/
container-image.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
name: Container Image
on:
push:
branches:
- main
tags:
- "*.*.*"
env:
REGISTRY: ghcr.io
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-go@v3
- name: Compile
env:
CGO_ENABLED: 0
run: |
GOARCH=amd64 go build -ldflags -s -o patroni-postgres-operator.amd64 .
GOARCH=arm go build -ldflags -s -o patroni-postgres-operator.arm .
GOARCH=arm64 go build -ldflags -s -o patroni-postgres-operator.arm64 .
GOARCH=amd64 go build -ldflags -s -o upgrade.amd64 ./cmd/upgrade/
GOARCH=arm go build -ldflags -s -o upgrade.arm ./cmd/upgrade/
GOARCH=arm64 go build -ldflags -s -o upgrade.arm64 ./cmd/upgrade/
- name: Setup qemu
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Extract metadata (tags, labels)
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ github.repository }}
tags: |
type=semver,pattern={{major}}.{{minor}}.{{patch}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
# set latest tag for default branch
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and publish image
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
platforms: linux/amd64, linux/arm/v7, linux/arm64/v8
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}