File tree 3 files changed +20
-7
lines changed
3 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ name: Build Commitfest Container Images
3
3
on :
4
4
workflow_dispatch :
5
5
inputs :
6
+ major_version :
7
+ description : " PostgreSQL major version tag (leave empty for default)"
8
+ required : false
9
+ default : " "
6
10
commitfest_id :
7
11
description : " ID of the Commitfest"
8
12
required : false
11
15
description : " ID of the Patch"
12
16
required : false
13
17
default : " "
14
- major_version :
15
- description : " PostgreSQL major version to build against to"
16
- required : false
17
- default : " "
18
18
19
19
# set up environment variables to be used across all the jobs
20
20
env :
Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ name: Build Container Images
3
3
on :
4
4
workflow_dispatch :
5
5
inputs :
6
+ major_version :
7
+ description : " PostgreSQL major version tag (leave empty for default)"
8
+ required : false
9
+ default : " "
6
10
extra_tag :
7
11
description : " Use this field to set an extra tag (make sure it starts with the PG major)"
8
12
required : false
19
23
# set up environment variables to be used across all the jobs
20
24
env :
21
25
REGISTRY : " ghcr.io/${{ github.repository_owner }}/postgresql-trunk"
22
- TAG : " ${{ vars.PG_MAJOR }}-${{ github.run_number }}"
23
26
24
27
defaults :
25
28
run :
@@ -37,12 +40,22 @@ jobs:
37
40
- name : Checkout Code
38
41
uses : actions/checkout@v4
39
42
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
41
52
run : |
53
+ TAG="${{ env.PG_MAJOR }}-${{ github.run_number }}"
42
54
EXTRA_TAG=""
43
55
if [[ "${{ github.event.inputs.extra_tag }}" != "" ]]; then
44
56
EXTRA_TAG="${{ env.REGISTRY }}:${{ github.event.inputs.extra_tag }}"
45
57
fi
58
+ echo "TAG=${TAG}" >> $GITHUB_ENV
46
59
echo "EXTRA_TAG=${EXTRA_TAG}" >> $GITHUB_ENV
47
60
48
61
- name : Log in to the GitHub Container registry
Original file line number Diff line number Diff line change 1
1
{
2
- "pg_major" : 17
2
+ "pg_major" : 18
3
3
}
You can’t perform that action at this time.
0 commit comments