Skip to content

Commit ab7efd3

Browse files
authored
v2.3.2 (#65)
Minor updates * Using latest base images Build updates * Simplifying workflows using matrix
1 parent 34c5ce0 commit ab7efd3

File tree

14 files changed

+32
-503
lines changed

14 files changed

+32
-503
lines changed

.github/workflows/dev-13.yml

Lines changed: 0 additions & 70 deletions
This file was deleted.

.github/workflows/dev-14.yml

Lines changed: 0 additions & 70 deletions
This file was deleted.

.github/workflows/dev-15.yml

Lines changed: 0 additions & 70 deletions
This file was deleted.

.github/workflows/dev-12.yml renamed to .github/workflows/dev.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: dev-12
1+
name: dev
22

33
on:
44
push:
@@ -7,13 +7,16 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
test-12:
10+
test:
1111
runs-on: ubuntu-latest
1212
steps:
1313
-
1414
name: Checkout code
1515
uses: actions/checkout@v3
16-
build-12:
16+
build:
17+
strategy:
18+
matrix:
19+
postgresql: [ "12", "13", "14", "15" ]
1720
runs-on: ubuntu-latest
1821
steps:
1922
-
@@ -54,17 +57,17 @@ jobs:
5457
uses: docker/build-push-action@v3
5558
with:
5659
context: .
57-
file: ./12/Dockerfile
60+
file: ./${{ matrix.postgresql }}/Dockerfile
5861
build-args: |
5962
BF_IMAGE=${{ env.REPOSITORY_NAME }}
6063
BF_VERSION=${{ steps.version.outputs.contents }}
6164
push: ${{ startsWith(github.ref, 'refs/heads/') }}
6265
platforms: linux/amd64,linux/arm/v7,linux/arm64
6366
tags: |
64-
bfren/postgresql:postgresql12-dev
65-
bfren/postgresql:postgresql12-${{ steps.version.outputs.contents }}-beta
66-
ghcr.io/bfren/postgresql:postgresql12-dev
67-
ghcr.io/bfren/postgresql:postgresql12-${{ steps.version.outputs.contents }}-beta
67+
bfren/postgresql:postgresql${{ matrix.postgresql }}-dev
68+
bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version.outputs.contents }}-beta
69+
ghcr.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-dev
70+
ghcr.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version.outputs.contents }}-beta
6871
-
6972
name: Image digest
7073
run: echo ${{ steps.docker_build.outputs.digest }}

.github/workflows/publish-13.yml

Lines changed: 0 additions & 89 deletions
This file was deleted.

0 commit comments

Comments
 (0)