From 63664223c92fb2cac227d73a36de456475d6c4a8 Mon Sep 17 00:00:00 2001 From: mazano Date: Sat, 19 Oct 2024 22:27:44 +0200 Subject: [PATCH] try building image directly (#486) Co-authored-by: Admire Nyakudya --- .github/workflows/deploy-image.yaml | 58 ++++++++++++++--------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/deploy-image.yaml b/.github/workflows/deploy-image.yaml index 07f69a4..fc288a0 100644 --- a/.github/workflows/deploy-image.yaml +++ b/.github/workflows/deploy-image.yaml @@ -49,31 +49,31 @@ jobs: id: current_date run: echo "formatted=$(date -u +%Y.%m.%d)" >> $GITHUB_OUTPUT - - name: Build base image - id: docker_build_base - uses: docker/build-push-action@v6 - with: - context: . - platforms: linux/amd64,linux/arm64 - file: Dockerfile - push: true - tags: | - ${{ secrets.DOCKERHUB_REPO }}/postgis:base - ${{ secrets.DOCKERHUB_REPO }}/postgis:base-${{ matrix.imageVersion.imageDistro }}-${{ matrix.imageVersion.imageDistroVersion }}-${{ matrix.imageVersion.imageDistroVariant }} - build-args: | - DISTRO=${{ matrix.imageVersion.imageDistro }} - IMAGE_VERSION=${{ matrix.imageVersion.imageDistroVersion }} - IMAGE_VARIANT=${{ matrix.imageVersion.imageDistroVariant }} - GENERATE_ALL_LOCALE=1 - POSTGRES_MAJOR_VERSION=${{ matrix.postgresMajorVersion }} - POSTGIS_MAJOR_VERSION=${{ matrix.postgisMajorVersion }} - POSTGIS_MINOR_VERSION=${{ matrix.postgisMinorRelease }} - cache-from: | - type=gha,scope=test - type=gha,scope=prod - type=gha,scope=base - cache-to: type=gha,scope=base - target: postgis-base +# - name: Build base image +# id: docker_build_base +# uses: docker/build-push-action@v6 +# with: +# context: . +# platforms: linux/amd64,linux/arm64 +# file: Dockerfile +# push: true +# tags: | +# ${{ secrets.DOCKERHUB_REPO }}/postgis:base +# ${{ secrets.DOCKERHUB_REPO }}/postgis:base-${{ matrix.imageVersion.imageDistro }}-${{ matrix.imageVersion.imageDistroVersion }}-${{ matrix.imageVersion.imageDistroVariant }} +# build-args: | +# DISTRO=${{ matrix.imageVersion.imageDistro }} +# IMAGE_VERSION=${{ matrix.imageVersion.imageDistroVersion }} +# IMAGE_VARIANT=${{ matrix.imageVersion.imageDistroVariant }} +# GENERATE_ALL_LOCALE=1 +# POSTGRES_MAJOR_VERSION=${{ matrix.postgresMajorVersion }} +# POSTGIS_MAJOR_VERSION=${{ matrix.postgisMajorVersion }} +# POSTGIS_MINOR_VERSION=${{ matrix.postgisMinorRelease }} +# cache-from: | +# type=gha,scope=test +# type=gha,scope=prod +# type=gha,scope=base +# cache-to: type=gha,scope=base +# target: postgis-base - name: Build prod image id: docker_build_prod @@ -96,10 +96,10 @@ jobs: POSTGRES_MAJOR_VERSION=${{ matrix.postgresMajorVersion }} POSTGIS_MAJOR_VERSION=${{ matrix.postgisMajorVersion }} POSTGIS_MINOR_VERSION=${{ matrix.postgisMinorRelease }} - cache-from: | - type=gha,scope=test - type=gha,scope=prod - type=gha,scope=base +# cache-from: | +# type=gha,scope=test +# type=gha,scope=prod +# type=gha,scope=base cache-to: type=gha,scope=prod target: postgis-prod