diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a0d38491527..8487e4d3c3fe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,9 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true +env: + VERSION: ${{ github.ref }} + on: workflow_dispatch: push: @@ -86,6 +89,50 @@ jobs: path: /tmp/out/* if-no-files-found: error + bin-image: + runs-on: ubuntu-20.04 + if: ${{ github.event_name != 'pull_request' && github.repository == 'docker/cli' }} + steps: + - + name: Checkout + uses: actions/checkout@v4 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - + name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: dockereng/cli-bin + tags: | + type=semver,pattern={{version}} + type=ref,event=branch + type=ref,event=pr + type=sha + - + name: Login to DockerHub + if: github.event_name != 'pull_request' + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_CLIBIN_USERNAME }} + password: ${{ secrets.DOCKERHUB_CLIBIN_TOKEN }} + - + name: Build and push image + uses: docker/bake-action@v4 + with: + files: | + ./docker-bake.hcl + ${{ steps.meta.outputs.bake-file }} + targets: bin-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 + prepare-plugins: runs-on: ubuntu-20.04 outputs: diff --git a/Dockerfile b/Dockerfile index 95479cdc504a..f5b4eaf77bf3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -124,4 +124,4 @@ FROM scratch AS plugins COPY --from=build-plugins /out . FROM scratch AS binary -COPY --from=build /out . +COPY --from=build /out/docker /docker diff --git a/docker-bake.hcl b/docker-bake.hcl index b5de2da990ca..8c4af8ce1662 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -165,3 +165,26 @@ target "e2e-gencerts" { dockerfile = "./e2e/testdata/Dockerfile.gencerts" output = ["./e2e/testdata"] } + +target "docker-metadata-action" { + tags = ["cli-bin:local"] +} + +target "bin-image" { + inherits = ["binary", "docker-metadata-action"] + output = ["type=docker"] +} + +target "bin-image-cross" { + inherits = ["bin-image"] + output = ["type=image"] + platforms = [ + "linux/amd64", + "linux/arm/v6", + "linux/arm/v7", + "linux/arm64", + "linux/ppc64le", + "linux/s390x", + "windows/amd64" + ] +} diff --git a/scripts/build/.variables b/scripts/build/.variables index e0147655b491..a9371ebec2b6 100755 --- a/scripts/build/.variables +++ b/scripts/build/.variables @@ -22,6 +22,13 @@ else BUILDTIME=${BUILDTIME:-$(TZ=UTC date -u --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +"%Y-%m-%dT%H:%M:%SZ")} fi +case "$VERSION" in + refs/tags/v*) VERSION=${VERSION#refs/tags/v} ;; + refs/tags/*) VERSION=${VERSION#refs/tags/} ;; + refs/heads/*) VERSION=$(echo "${VERSION#refs/heads/}" | sed -r 's#/+#-#g') ;; + refs/pull/*) VERSION=pr-$(echo "$VERSION" | grep -o '[0-9]\+') ;; +esac + GOOS="$(go env GOOS)" GOARCH="$(go env GOARCH)" if [ "${GOARCH}" = "arm" ]; then