From 556081695a939eb32da46bfffee9d675494d4379 Mon Sep 17 00:00:00 2001 From: Matthias Wild <40327258+mauwii@users.noreply.github.com> Date: Tue, 6 Dec 2022 18:06:48 +0100 Subject: [PATCH] disable pushing the cloud container (#1831) --- .github/workflows/build-cloud-img.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-cloud-img.yml b/.github/workflows/build-cloud-img.yml index a1a2f06a12..94094c9c56 100644 --- a/.github/workflows/build-cloud-img.yml +++ b/.github/workflows/build-cloud-img.yml @@ -44,13 +44,13 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - - if: github.event_name != 'pull_request' - name: Docker login - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + # - if: github.event_name != 'pull_request' + # name: Docker login + # uses: docker/login-action@v2 + # with: + # registry: ghcr.io + # username: ${{ github.actor }} + # password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push cloud image uses: docker/build-push-action@v3 @@ -58,6 +58,7 @@ jobs: context: . file: docker-build/Dockerfile.cloud platforms: Linux/${{ matrix.arch }} - push: ${{ github.event_name != 'pull_request' }} + # push: ${{ github.event_name != 'pull_request' }} + push: false tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file + labels: ${{ steps.meta.outputs.labels }}