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
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,23 @@ jobs:
tags: |
flyio/postgres-flex:14
flyio/postgres-flex:14.6
-
name: Build and push Postgres 15
id: docker_build_15
uses: docker/build-push-action@v3
with:
build-args: |
PG_VERSION=15.1
VERSION=${{ steps.get-latest-tag.outputs.tag }}
context: .
file: ./Dockerfile
push: true
tags: |
flyio/postgres-flex:15
flyio/postgres-flex:15.1
-
name: Postgres 14 Image digest
run: echo ${{ steps.docker_build_14.outputs.digest }}
-
name: Postgres 15 Image digest
run: echo ${{ steps.docker_build_15.outputs.digest }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PG_VERSION=14.6
ARG PG_VERSION=15.1
ARG VERSION=custom

FROM golang:1.19 as flyutil
Expand Down