From 96018859b95afa87886586c1a28c686340ac4401 Mon Sep 17 00:00:00 2001 From: Eduard Melnytskyi Date: Thu, 19 Dec 2024 20:01:50 +0100 Subject: [PATCH] Remove debug info --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c797d951..46e9a442 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: - image: "alpine/3.20/8.3/Dockerfile" php_version: '8.3' distro: 'alpine3.20' - tags: ["spryker/php:8.3-alpine3.20-otel" ] + tags: [ "spryker/php:8.3", "spryker/php:8.3-alpine3.20" ] platforms: [ "linux/amd64", "linux/arm64" ] ## Debian @@ -158,10 +158,10 @@ jobs: uses: docker/build-push-action@v5 with: push: ${{ github.ref == 'refs/heads/master' }} -# load: ${{ github.ref != 'refs/heads/master' }} + load: ${{ github.ref != 'refs/heads/master' }} file: ${{ matrix.image }} tags: ${{ join(matrix.tags) }} - platforms: ${{ join(matrix.platforms) }} + platforms: ${{ github.ref == 'refs/heads/master' && join(matrix.platforms) || 'linux/amd64' }} - name: Pull image for master branch if: github.ref == 'refs/heads/master'