Skip to content

Commit 79835e9

Browse files
committed
chore: use pg_major file for build too
Signed-off-by: Gabriele Bartolini <[email protected]>
1 parent d35f429 commit 79835e9

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

.github/workflows/build-commitfest.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Build Commitfest Container Images
33
on:
44
workflow_dispatch:
55
inputs:
6+
major_version:
7+
description: "PostgreSQL major version tag (leave empty for default)"
8+
required: false
9+
default: ""
610
commitfest_id:
711
description: "ID of the Commitfest"
812
required: false
@@ -11,10 +15,6 @@ on:
1115
description: "ID of the Patch"
1216
required: false
1317
default: ""
14-
major_version:
15-
description: "PostgreSQL major version to build against to"
16-
required: false
17-
default: ""
1818

1919
# set up environment variables to be used across all the jobs
2020
env:

.github/workflows/build.yml

+15-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Build Container Images
33
on:
44
workflow_dispatch:
55
inputs:
6+
major_version:
7+
description: "PostgreSQL major version tag (leave empty for default)"
8+
required: false
9+
default: ""
610
extra_tag:
711
description: "Use this field to set an extra tag (make sure it starts with the PG major)"
812
required: false
@@ -19,7 +23,6 @@ on:
1923
# set up environment variables to be used across all the jobs
2024
env:
2125
REGISTRY: "ghcr.io/${{ github.repository_owner }}/postgresql-trunk"
22-
TAG: "${{ vars.PG_MAJOR }}-${{ github.run_number }}"
2326

2427
defaults:
2528
run:
@@ -37,12 +40,22 @@ jobs:
3740
- name: Checkout Code
3841
uses: actions/checkout@v4
3942

40-
- name: Set optional extra tag
43+
- name: Set PostgreSQL Major version
44+
run: |
45+
majorVersion="${{ github.event.inputs.major_version }}"
46+
if [[ -z "${majorVersion}" ]]; then
47+
majorVersion=`cat pg_major.json | jq -r '.pg_major'`
48+
fi
49+
echo "PG_MAJOR=${majorVersion}" >> $GITHUB_ENV
50+
51+
- name: Set tag and optional extra tag
4152
run: |
53+
TAG="${{ env.PG_MAJOR }}-${{ github.run_number }}"
4254
EXTRA_TAG=""
4355
if [[ "${{ github.event.inputs.extra_tag }}" != "" ]]; then
4456
EXTRA_TAG="${{ env.REGISTRY }}:${{ github.event.inputs.extra_tag }}"
4557
fi
58+
echo "TAG=${TAG}" >> $GITHUB_ENV
4659
echo "EXTRA_TAG=${EXTRA_TAG}" >> $GITHUB_ENV
4760
4861
- name: Log in to the GitHub Container registry

pg_major.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"pg_major": 17
2+
"pg_major": 18
33
}

0 commit comments

Comments
 (0)