build and push binaries images when a PR is merged or a tag pushed

Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
This commit is contained in:
Guillaume Lours 2023-03-14 11:08:04 +01:00 committed by Nicolas De loof
parent 200f47e5be
commit 643557d534
3 changed files with 57 additions and 1 deletions

View File

@ -10,11 +10,13 @@ on:
- 'v2' - 'v2'
tags: tags:
- 'v*' - 'v*'
workflow_dispatch:
permissions: permissions:
contents: read # to fetch code (actions/checkout) contents: read # to fetch code (actions/checkout)
env:
REPO_SLUG: "docker/compose-bin"
jobs: jobs:
e2e: e2e:
name: Build and test name: Build and test
@ -72,3 +74,47 @@ jobs:
run: | run: |
make e2e-compose-standalone make e2e-compose-standalone
bin-image:
runs-on: ubuntu-22.04
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
${{ env.REPO_SLUG }}
tags: |
type=ref,event=tag
type=edge
bake-target: meta-helper
-
name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERPUBLICBOT_USERNAME }}
password: ${{ secrets.DOCKERPUBLICBOT_WRITE_PAT }}
-
name: Build and push image
uses: docker/bake-action@v2
with:
files: |
./docker-bake.hcl
${{ steps.meta.outputs.bake-file }}
targets: image-cross
push: ${{ github.event_name != 'pull_request' }}
set: |
*.cache-from=type=gha,scope=bin-image
*.cache-to=type=gha,scope=bin-image,mode=max
*.attest=type=sbom
*.attest=type=provenance,mode=max,builder-id=https://github.com/${{ env.GITHUB_REPOSITORY }}/actions/runs/${{ env.GITHUB_RUN_ID }}

View File

@ -168,6 +168,8 @@ FROM binary-unix AS binary-linux
FROM scratch AS binary-windows FROM scratch AS binary-windows
COPY --link --from=build /usr/bin/docker-compose /docker-compose.exe COPY --link --from=build /usr/bin/docker-compose /docker-compose.exe
FROM binary-$TARGETOS AS binary FROM binary-$TARGETOS AS binary
# enable scanning for this stage
ARG BUILDKIT_SBOM_SCAN_STAGE=true
FROM --platform=$BUILDPLATFORM alpine AS releaser FROM --platform=$BUILDPLATFORM alpine AS releaser
WORKDIR /work WORKDIR /work

View File

@ -33,6 +33,9 @@ function "bindir" {
result = DESTDIR != "" ? DESTDIR : "./bin/${defaultdir}" result = DESTDIR != "" ? DESTDIR : "./bin/${defaultdir}"
} }
# Special target: https://github.com/docker/metadata-action#bake-definition
target "meta-helper" {}
target "_common" { target "_common" {
args = { args = {
GO_VERSION = GO_VERSION GO_VERSION = GO_VERSION
@ -134,3 +137,8 @@ target "docs-update" {
target = "docs-update" target = "docs-update"
output = ["./docs"] output = ["./docs"]
} }
target "image-cross" {
inherits = ["meta-helper", "binary-cross"]
output = ["type=image"]
}