This is an automated email from the ASF dual-hosted git repository.
damondouglas pushed a commit to branch distroless-beam-java-sdk-snapshots
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to
refs/heads/distroless-beam-java-sdk-snapshots by this push:
new 82d16baa0a8 Fix missing tag error
82d16baa0a8 is described below
commit 82d16baa0a87558d799ddb44ae7260d79eec1481
Author: Damon <[email protected]>
AuthorDate: Thu Jan 2 14:35:19 2025 -0800
Fix missing tag error
---
.github/workflows/beam_Publish_Java_SDK_Distroless_Snapshots.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/beam_Publish_Java_SDK_Distroless_Snapshots.yml
b/.github/workflows/beam_Publish_Java_SDK_Distroless_Snapshots.yml
index 4b495b89031..3f8ee189474 100644
--- a/.github/workflows/beam_Publish_Java_SDK_Distroless_Snapshots.yml
+++ b/.github/workflows/beam_Publish_Java_SDK_Distroless_Snapshots.yml
@@ -85,11 +85,12 @@ jobs:
gcloud auth configure-docker ${{ env.docker_registry }}
- name: Build and push Java distroless image
run: |
- docker buildx build --push \
+ docker buildx build \
-t gcr.io/apache-beam-testing/beam-sdk/beam_${{
matrix.java_version }}_sdk_distroless:${{ github.sha }} \
-t gcr.io/apache-beam-testing/beam-sdk/beam_${{
matrix.java_version }}_sdk_distroless:${BEAM_VERSION} \
-t gcr.io/apache-beam-testing/beam-sdk/beam_${{
matrix.java_version }}_sdk_distroless:latest \
-f sdks/java/container/Dockerfile-distroless \
--build-arg=BEAM_BASE=gcr.io/apache-beam-testing/beam-sdk/beam_${{
matrix.java_version }}_sdk:${BEAM_VERSION} \
--build-arg=DISTROLESS_BASE=gcr.io/distroless/${{
matrix.java_version }}-debian12 \
+ --output type=image,push=true \
.