Skip to content

Version bumps #281

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
24 changes: 12 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,92 +36,92 @@ jobs:
uses: docker/build-push-action@v3
with:
build-args: |
PG_VERSION=15.10
PG_VERSION=15.12
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.10
flyio/postgres-flex:15.12
-
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.10
PG_VERSION=15.12
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.10
flyio/postgres-flex-timescaledb:15.12

-
name: Build and push Postgres 16
id: docker_build_16
uses: docker/build-push-action@v3
with:
build-args: |
PG_VERSION=16.6
PG_VERSION=16.8
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.6
flyio/postgres-flex:16.8
-
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.6
PG_VERSION=16.8
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.6
flyio/postgres-flex-timescaledb:16.8

-
name: Build and push Postgres 17
id: docker_build_17
uses: docker/build-push-action@v3
with:
build-args: |
PG_VERSION=17.2
PG_VERSION=17.4
PG_MAJOR_VERSION=17
VERSION=${{ steps.get-latest-tag.outputs.tag }}
context: .
file: ./pg17/Dockerfile
push: true
tags: |
flyio/postgres-flex:17
flyio/postgres-flex:17.2
flyio/postgres-flex:17.4
-
name: Build and push Postgres 17 Timescale DB
id: docker_build_17_timescaledb
uses: docker/build-push-action@v3
with:
build-args: |
PG_VERSION=17.2
PG_VERSION=17.4
PG_MAJOR_VERSION=17
VERSION=${{ steps.get-latest-tag.outputs.tag }}
context: .
file: ./pg17/Dockerfile-timescaledb
push: true
tags: |
flyio/postgres-flex-timescaledb:17
flyio/postgres-flex-timescaledb:17.2
flyio/postgres-flex-timescaledb:17.4
-
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.10
ARG PG_VERSION=15.12
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.10
ARG PG_VERSION=15.12
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.6
ARG PG_VERSION=16.8
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.6
ARG PG_VERSION=16.8
ARG PG_MAJOR_VERSION=16
ARG VERSION=custom

Expand Down
2 changes: 1 addition & 1 deletion pg17/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PG_VERSION=17.2
ARG PG_VERSION=17.4
ARG PG_MAJOR_VERSION=17
ARG VERSION=custom

Expand Down
2 changes: 1 addition & 1 deletion pg17/Dockerfile-timescaledb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PG_VERSION=17.2
ARG PG_VERSION=17.4
ARG PG_MAJOR_VERSION=17
ARG VERSION=custom

Expand Down
Loading