Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,61 +36,61 @@ jobs:
uses: docker/build-push-action@v3
with:
build-args: |
PG_VERSION=15.8
PG_VERSION=15.10
PG_MAJOR_VERSION=15
VERSION=${{ steps.get-latest-tag.outputs.tag }}
context: .
file: ./pg15/Dockerfile
push: true
tags: |
flyio/postgres-flex:15
flyio/postgres-flex:15.8
flyio/postgres-flex:15.10
-
name: Build and push Postgres 15 Timescale DB
id: docker_build_15_timescaledb
uses: docker/build-push-action@v3
with:
build-args: |
PG_VERSION=15.8
PG_VERSION=15.10
PG_MAJOR_VERSION=15
VERSION=${{ steps.get-latest-tag.outputs.tag }}
context: .
file: ./pg15/Dockerfile-timescaledb
push: true
tags: |
flyio/postgres-flex-timescaledb:15
flyio/postgres-flex-timescaledb:15.8
flyio/postgres-flex-timescaledb:15.10

-
name: Build and push Postgres 16
id: docker_build_16
uses: docker/build-push-action@v3
with:
build-args: |
PG_VERSION=16.4
PG_VERSION=16.6
PG_MAJOR_VERSION=16
VERSION=${{ steps.get-latest-tag.outputs.tag }}
context: .
file: ./pg16/Dockerfile
push: true
tags: |
flyio/postgres-flex:16
flyio/postgres-flex:16.4
flyio/postgres-flex:16.6
-
name: Build and push Postgres 16 Timescale DB
id: docker_build_16_timescaledb
uses: docker/build-push-action@v3
with:
build-args: |
PG_VERSION=16.4
PG_VERSION=16.6
PG_MAJOR_VERSION=16
VERSION=${{ steps.get-latest-tag.outputs.tag }}
context: .
file: ./pg16/Dockerfile-timescaledb
push: true
tags: |
flyio/postgres-flex-timescaledb:16
flyio/postgres-flex-timescaledb:16.4
flyio/postgres-flex-timescaledb:16.6
-
name: Postgres 15 Image digest
run: echo ${{ steps.docker_build_15.outputs.digest }}
Expand Down
2 changes: 1 addition & 1 deletion pg15/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PG_VERSION=15.8
ARG PG_VERSION=15.10
ARG PG_MAJOR_VERSION=15
ARG VERSION=custom

Expand Down
2 changes: 1 addition & 1 deletion pg15/Dockerfile-timescaledb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PG_VERSION=15.8
ARG PG_VERSION=15.10
ARG PG_MAJOR_VERSION=15
ARG VERSION=custom

Expand Down
2 changes: 1 addition & 1 deletion pg16/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PG_VERSION=16.4
ARG PG_VERSION=16.6
ARG PG_MAJOR_VERSION=16
ARG VERSION=custom

Expand Down
2 changes: 1 addition & 1 deletion pg16/Dockerfile-timescaledb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PG_VERSION=16.4
ARG PG_VERSION=16.6
ARG PG_MAJOR_VERSION=16
ARG VERSION=custom

Expand Down
Loading