From 1f7e040c1ba7eb413442840e3c8c6339df38f1d7 Mon Sep 17 00:00:00 2001 From: Kartik Date: Tue, 10 Sep 2024 11:49:03 +0530 Subject: [PATCH] chore: add github container registry as a target --- .github/workflows/docker_image_gen.yaml | 6 +++++- .github/workflows/example_docker_image_gen.yaml | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker_image_gen.yaml b/.github/workflows/docker_image_gen.yaml index adc9c737b..a618e73f7 100644 --- a/.github/workflows/docker_image_gen.yaml +++ b/.github/workflows/docker_image_gen.yaml @@ -41,4 +41,8 @@ jobs: push: true context: . platforms: linux/amd64,linux/arm64 - tags: datron1/superposition:${{ steps.git_tag.outputs.docker_tag }}, datron1/superposition:latest + tags: + - ghcr.io/juspay/superposition:latest + - ghcr.io/juspay/superposition:${{ steps.git_tag.outputs.docker_tag }} + - datron1/superposition:${{ steps.git_tag.outputs.docker_tag }} + - datron1/superposition:latest diff --git a/.github/workflows/example_docker_image_gen.yaml b/.github/workflows/example_docker_image_gen.yaml index e6cf89b95..a3e9dbc99 100644 --- a/.github/workflows/example_docker_image_gen.yaml +++ b/.github/workflows/example_docker_image_gen.yaml @@ -42,4 +42,8 @@ jobs: context: . platforms: linux/amd64,linux/arm64 file: ./example.Dockerfile - tags: datron1/superposition-demo-app:${{ steps.git_tag.outputs.docker_tag }}, datron1/superposition-demo-app:latest + tags: + - ghcr.io/juspay/superposition-demo-app:latest + - ghcr.io/juspay/superposition-demo-app:${{ steps.git_tag.outputs.docker_tag }} + - datron1/superposition-demo-app:${{ steps.git_tag.outputs.docker_tag }} + - datron1/superposition-demo-app:latest