Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try building image directly #486

Merged
merged 1 commit into from
Oct 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 29 additions & 29 deletions .github/workflows/deploy-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
Loading