-
-
Notifications
You must be signed in to change notification settings - Fork 9
110 lines (95 loc) · 3.43 KB
/
compile-docker.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
name: Compile Docker Images
on: [push]
jobs:
main:
strategy:
matrix:
arch: [amd64, arm64]
runs-on: ubuntu-20.04
permissions:
packages: write
contents: read
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: |
nebraltd/hm-gatewayrs
ghcr.io/${{ github.repository }}
tags: |
type=sha,prefix=${{ matrix.arch }}-
type=sha,format=long,prefix=${{ matrix.arch }}-
type=raw,value=${{ matrix.arch }}-latest
- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
with:
push: true
platforms: linux/${{ matrix.arch }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=registry,ref=nebraltd/hm-gatewayrs:buildcache-${{ matrix.arch }}
cache-to: type=registry,ref=nebraltd/hm-gatewayrs:buildcache-${{ matrix.arch }},mode=max
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
multiarch:
needs: main
runs-on: ubuntu-20.04
permissions:
packages: write
contents: read
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: |
nebraltd/hm-gatewayrs
ghcr.io/${{ github.repository }}
flavor: |
latest=true
tags: |
type=sha,prefix=
type=sha,format=long,prefix=
- name: Create multi-arch images
run: |
tags=(${{ steps.meta.outputs.tags }})
docker buildx imagetools create -t ${tags[0]} -t ${tags[1]} -t ${tags[2]} nebraltd/hm-gatewayrs:arm64-${{ github.sha }} nebraltd/hm-gatewayrs:amd64-${{ github.sha }}
docker buildx imagetools create -t ${tags[3]} -t ${tags[4]} -t ${tags[5]} ghcr.io/nebraltd/hm-gatewayrs:arm64-${{ github.sha }} ghcr.io/nebraltd/hm-gatewayrs:amd64-${{ github.sha }}
- name: Update repo description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
short-description: ${{ github.event.repository.description }}