-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (91 loc) · 2.93 KB
/
build-and-push.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
99
100
name: build-and-push
on:
push: {}
workflow_dispatch:
inputs:
root:
description: 'root directory to look for Dockerfiles'
required: true
default: '.'
type: string
build_all:
description: 'build all images'
required: false
default: false
type: boolean
jobs:
generate-matrix:
name: Generate build matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get changed files
if: ${{ inputs.build_all == false }}
id: changed-files
with:
dir_names: "true"
path: ${{ inputs.root }}
uses: tj-actions/[email protected]
- id: set-matrix
run: |
echo "matrix=$(
for dir in ${{ inputs.build_all && format('{0}/*', inputs.root) || steps.changed-files.outputs.all_changed_files }}; do
[[ -f "$dir/Dockerfile" ]] || continue
name="$(basename "$dir")"
jq -n --arg dir "${dir#./}" --arg name "${name//_/-}" '{"dir": $dir, "name": $name}'
done | jq -c -r -s '.'
)" >> "$GITHUB_OUTPUT"
build-and-push-images:
needs: [generate-matrix]
runs-on: ubuntu-latest
if: ${{ needs.generate-matrix.outputs.matrix != '[]' }}
strategy:
fail-fast: true
matrix:
include: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}/${{ matrix.dir }}
tags: |
# 'latest' on main branch
type=ref,event=branch,pattern=latest
# Semver from a tag like v1.2.3 => v1.2.3, v1.2, and v1
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}.{{minor}}
type=semver,pattern=v{{major}}
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
id: build_and_push
uses: docker/build-push-action@v6
with:
context: ${{ matrix.dir }}
file: ${{ matrix.dir }}/Dockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}