-
Notifications
You must be signed in to change notification settings - Fork 51
66 lines (66 loc) · 2.07 KB
/
build-docker.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
name: Build docker
on:
workflow_dispatch:
push:
branches:
- master
paths:
- dockerfiles/**
- .github/workflows/build-docker.yaml
pull_request:
paths:
- dockerfiles/**
- .github/workflows/build-docker.yaml
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Set up cosign
uses: sigstore/cosign-installer@v3
if: ${{ github.event_name != 'pull_request' }}
- name: login to Docker Hub
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: login to quay.io
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAYIO_USERNAME }}
password: ${{ secrets.QUAYIO_PASSWORD }}
- name: Login to GitHub Container Registry
if: ${{ github.event_name == 'pull_request' }}
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/bake-action@v5
id: bake
with:
builder: ${{ steps.buildx.outputs.name }}
workdir: dockerfiles
provenance: true
sbom: true
push: true
targets: ktls-utils
env:
GIT_COMMIT: ${{ github.sha }}
CACHE: true
REGISTRIES: ghcr.io/piraeusdatastore
- name: Sign images
run: |
jq '.[] | ."containerimage.digest" as $DIGEST | ."image.name" | split(",")[] | "\(.)@\($DIGEST)"' -r <<<'${{ steps.bake.outputs.metadata }}' \
| xargs echo cosign sign --yes