-
Notifications
You must be signed in to change notification settings - Fork 51
49 lines (49 loc) · 1.4 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
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: 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: Build and push
uses: docker/bake-action@v5
with:
builder: ${{ steps.buildx.outputs.name }}
workdir: dockerfiles
provenance: true
sbom: true
push: ${{ github.event_name != 'pull_request' }}
env:
GIT_COMMIT: ${{ github.sha }}
CACHE: true