Skip to content

Commit f96ff8d

Browse files
authored
v1.0.6 (#7)
Minor updates * Using latest base images * Updating PostgreSQL to 14.1, changing installation script to reflect new Alpine package name Build upates * Adding major / minor to image tags
1 parent 590184d commit f96ff8d

File tree

12 files changed

+61
-8
lines changed

12 files changed

+61
-8
lines changed

.github/workflows/publish-12.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,18 @@ jobs:
2424
with:
2525
file: ./12/POSTGRESQL_BUILD
2626
id: postgresql_build
27+
-
28+
name: Read image version
29+
uses: bfren/read-file@v1
30+
with:
31+
file: ./VERSION_MAJOR
32+
id: version_major
33+
-
34+
name: Read image version
35+
uses: bfren/read-file@v1
36+
with:
37+
file: ./VERSION_MINOR
38+
id: version_minor
2739
-
2840
name: Read image version
2941
uses: bfren/read-file@v1
@@ -53,6 +65,8 @@ jobs:
5365
platforms: linux/amd64,linux/arm/v7,linux/arm64
5466
tags: |
5567
bfren/postgresql:postgresql12
68+
bfren/postgresql:postgresql12-${{ steps.version_major.outputs.contents }}
69+
bfren/postgresql:postgresql12-${{ steps.version_minor.outputs.contents }}
5670
bfren/postgresql:postgresql12-${{ steps.version.outputs.contents }}
5771
bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}
5872
bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}-${{ steps.version.outputs.contents }}

.github/workflows/publish-13.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,18 @@ jobs:
2424
with:
2525
file: ./13/POSTGRESQL_BUILD
2626
id: postgresql_build
27+
-
28+
name: Read image version
29+
uses: bfren/read-file@v1
30+
with:
31+
file: ./VERSION_MAJOR
32+
id: version_major
33+
-
34+
name: Read image version
35+
uses: bfren/read-file@v1
36+
with:
37+
file: ./VERSION_MINOR
38+
id: version_minor
2739
-
2840
name: Read image version
2941
uses: bfren/read-file@v1
@@ -53,8 +65,12 @@ jobs:
5365
platforms: linux/amd64,linux/arm/v7,linux/arm64
5466
tags: |
5567
bfren/postgresql:latest
68+
bfren/postgresql:${{ steps.version_major.outputs.contents }}
69+
bfren/postgresql:${{ steps.version_minor.outputs.contents }}
5670
bfren/postgresql:${{ steps.version.outputs.contents }}
5771
bfren/postgresql:postgresql13
72+
bfren/postgresql:postgresql13-${{ steps.version_major.outputs.contents }}
73+
bfren/postgresql:postgresql13-${{ steps.version_minor.outputs.contents }}
5874
bfren/postgresql:postgresql13-${{ steps.version.outputs.contents }}
5975
bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}
6076
bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}-${{ steps.version.outputs.contents }}

.github/workflows/publish-14.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,18 @@ jobs:
2424
with:
2525
file: ./14/POSTGRESQL_BUILD
2626
id: postgresql_build
27+
-
28+
name: Read image version
29+
uses: bfren/read-file@v1
30+
with:
31+
file: ./VERSION_MAJOR
32+
id: version_major
33+
-
34+
name: Read image version
35+
uses: bfren/read-file@v1
36+
with:
37+
file: ./VERSION_MINOR
38+
id: version_minor
2739
-
2840
name: Read image version
2941
uses: bfren/read-file@v1
@@ -53,6 +65,8 @@ jobs:
5365
platforms: linux/amd64,linux/arm/v7,linux/arm64
5466
tags: |
5567
bfren/postgresql:postgresql14
68+
bfren/postgresql:postgresql14-${{ steps.version_major.outputs.contents }}
69+
bfren/postgresql:postgresql14-${{ steps.version_minor.outputs.contents }}
5670
bfren/postgresql:postgresql14-${{ steps.version.outputs.contents }}
5771
bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}
5872
bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}-${{ steps.version.outputs.contents }}

12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/alpine-s6:alpine3.12-2.2.20
1+
FROM bfren/alpine-s6:alpine3.12-2.3.0
22

33
ENV \
44
# set to "1" to compress backup sql files

13/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/alpine-s6:alpine3.14-2.2.20
1+
FROM bfren/alpine-s6:alpine3.14-2.3.0
22

33
ENV \
44
# set to "1" to compress backup sql files

14/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/alpine-s6:alpineedge-2.2.20
1+
FROM bfren/alpine-s6:alpineedge-2.3.0
22

33
ENV \
44
# set to "1" to compress backup sql files

14/POSTGRESQL_BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.0-r6
1+
14.1-r1

14/POSTGRESQL_MINOR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.0
1+
14.1

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.5
1+
1.0.6

VERSION_MAJOR

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1

0 commit comments

Comments
 (0)