-
Notifications
You must be signed in to change notification settings - Fork 9
98 lines (95 loc) · 2.66 KB
/
build_image.yaml
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
on:
workflow_call:
inputs:
repo:
required: false
type: string
default: ghcr.io/oopt-goldstone/mgmt
file:
required: true
type: string
targets:
required: true
type: string
build-args:
required: false
type: string
platforms:
required: false
type: string
default: linux/amd64,linux/arm64
outputs:
required: false
type: string
default: "type=registry"
outputs:
tags:
value: ${{ jobs.push.outputs.tags }}
labels:
value: ${{ jobs.push.outputs.labels }}
jobs:
push:
runs-on: ubuntu-latest
if: >-
( github.event_name != 'pull_request_target' ) ||
( contains(github.event.pull_request.labels.*.name, 'safe to test') )
strategy:
matrix:
target: ${{fromJson(inputs.targets)}}
outputs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
steps:
-
name: Checkout - same repo
uses: actions/checkout@v3
if: github.event.pull_request.head.repo.fork == false
with:
submodules: recursive
fetch-depth: 0
-
name: Checkout - forked repo
uses: actions/checkout@v3
if: >-
( github.event_name == 'pull_request_target' ) &&
( github.event.pull_request.head.repo.fork == true )
with:
submodules: recursive
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
install: true
-
name: Login to ghcr.io
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USER }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Docker meta for builder
id: meta
uses: docker/metadata-action@v4
with:
images: "${{ inputs.repo }}/${{ matrix.target }}"
-
name: Build agent
uses: docker/build-push-action@v3
with:
context: .
platforms: ${{ inputs.platforms }}
outputs: ${{ inputs.outputs }}
file: ${{ inputs.file }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: ${{ matrix.target }}
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: ${{ inputs.build-args }}