Skip to content

Commit 1411ec5

Browse files
committed
add tag aliases
1 parent 8265600 commit 1411ec5

2 files changed

Lines changed: 33 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,40 @@ on:
99
workflow_dispatch:
1010

1111
jobs:
12+
# PostgreSQL 14 (quarterly packages)
1213
build-14:
1314
uses: daemonless/daemonless/.github/workflows/build-app.yml@main
1415
with:
1516
image_name: postgres
1617
image_tag: "14"
17-
build_args: "PG_VERSION=14"
18+
build_args: "PG_VERSION=14,BASE_VERSION=15-quarterly"
19+
extra_tags: "14-pkg"
1820
secrets: inherit
1921

22+
# PostgreSQL 14 (latest packages)
23+
build-14-pkg-latest:
24+
uses: daemonless/daemonless/.github/workflows/build-app.yml@main
25+
with:
26+
image_name: postgres
27+
image_tag: "14-pkg-latest"
28+
build_args: "PG_VERSION=14,BASE_VERSION=15"
29+
secrets: inherit
30+
31+
# PostgreSQL 17 (quarterly packages)
2032
build-17:
2133
uses: daemonless/daemonless/.github/workflows/build-app.yml@main
2234
with:
2335
image_name: postgres
2436
image_tag: "17"
25-
build_args: "PG_VERSION=17"
26-
extra_tags: "latest"
37+
build_args: "PG_VERSION=17,BASE_VERSION=15-quarterly"
38+
extra_tags: "17-pkg,latest"
39+
secrets: inherit
40+
41+
# PostgreSQL 17 (latest packages)
42+
build-17-pkg-latest:
43+
uses: daemonless/daemonless/.github/workflows/build-app.yml@main
44+
with:
45+
image_name: postgres
46+
image_tag: "17-pkg-latest"
47+
build_args: "PG_VERSION=17,BASE_VERSION=15"
2748
secrets: inherit

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,15 @@ services:
3737
3838
## Tags
3939
40-
| Tag | Description |
41-
|-----|-------------|
42-
| `:17` | PostgreSQL 17 (latest) |
43-
| `:14` | PostgreSQL 14 |
44-
| `:latest` | Alias for `:17` |
40+
| Tag | Base | Description |
41+
|-----|------|-------------|
42+
| `:17` | quarterly | PostgreSQL 17 |
43+
| `:17-pkg` | quarterly | Alias for `:17` |
44+
| `:17-pkg-latest` | latest | PostgreSQL 17 (latest packages) |
45+
| `:14` | quarterly | PostgreSQL 14 |
46+
| `:14-pkg` | quarterly | Alias for `:14` |
47+
| `:14-pkg-latest` | latest | PostgreSQL 14 (latest packages) |
48+
| `:latest` | quarterly | Alias for `:17` |
4549

4650
## Environment Variables
4751

0 commit comments

Comments
 (0)