From 11a9bc78d5ea4d0476575d21556907f0c2e6378e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Martos?= Date: Tue, 26 May 2026 09:02:15 +0200 Subject: [PATCH] Stop pushing minideb to AWS public ECR (#229) Remove logic to push image to AWS public ECR. More information [here](https://community.broadcom.com/tanzu/blogs/beltran-rueda-borrego/2026/05/20/important-update-transitioning-bitnami-offerings-o). Signed-off-by: Jota Martos --- .github/workflows/cd.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 6d076a1..dada62f 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -67,20 +67,6 @@ jobs: if ${{ matrix.dist == env.LATEST }} ; then bash pushone "latest" "${{ matrix.arch.name }}" fi - - name: Push to AWS - if: github.repository == 'bitnami/minideb' && github.ref == 'refs/heads/master' - env: - DOCKER_USERNAME: AWS - DOCKER_REGISTRY: public.ecr.aws - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_PUBLIC_GALLERY_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_PUBLIC_GALLERY_SECRET_KEY }} - run: | - # AWS login - export DOCKER_PASSWORD="$(aws ecr-public get-login-password --region us-east-1)" - bash pushone "${{ matrix.dist }}" "${{ matrix.arch.name }}" - if ${{ matrix.dist == env.LATEST }} ; then - bash pushone "latest" "${{ matrix.arch.name }}" - fi deploy_manifests: runs-on: ubuntu-24.04 needs: [ build_multiarch ] @@ -95,16 +81,6 @@ jobs: DOCKER_REGISTRY: docker.io run: | DISTS="bullseye bookworm trixie latest" bash pushmanifest - - name: Push Manifests to AWS - env: - DOCKER_USERNAME: AWS - DOCKER_REGISTRY: public.ecr.aws - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_PUBLIC_GALLERY_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_PUBLIC_GALLERY_SECRET_KEY }} - run: | - # AWS login - export DOCKER_PASSWORD="$(aws ecr-public get-login-password --region us-east-1)" - DISTS="bullseye bookworm trixie latest" bash pushmanifest # If the CI Pipeline does not succeed we should notify the interested agents notify: name: Send notification