File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 55
55
- name : Run checks if triggered manually
56
56
if : ${{ github.event_name == 'workflow_dispatch' }}
57
57
run : |
58
- SUFFIX=$(sudo nix run nixpkgs#yq -- " .postgres_release[\ "postgres${{ matrix.postgres_version }}\"]" ansible/vars.yml | sed -E 's/[0-9\.]+(.*)$/\1/')
58
+ SUFFIX=$(sudo nix run nixpkgs#yq -- ' .postgres_release["postgres${{ matrix.postgres_version }}"]' ansible/vars.yml | sed -E 's/[0-9\.]+(.*)$/\1/')
59
59
if [[ -z $SUFFIX ]] ; then
60
60
echo "Version must include non-numeric characters if built manually."
61
61
exit 1
Original file line number Diff line number Diff line change @@ -7,10 +7,12 @@ async_mode: true
7
7
# postgresql_release_checksum: sha256:ea2cf059a85882654b989acd07edc121833164a30340faee0d3615cf7058e66c
8
8
postgres_major :
9
9
- " 15"
10
+ - " 16"
10
11
11
12
# Full version strings for each major version
12
13
postgres_release :
13
- postgres15 : " 15.8.1.004-saltminionfix"
14
+ postgres15 : " 15.8.1.004"
15
+ postgres16 : " 16.3.1.010"
14
16
15
17
# Non Postgres Extensions
16
18
pgbouncer_release : " 1.19.0"
You can’t perform that action at this time.
0 commit comments