Skip to content

Commit 4395c35

Browse files
committed
chore: need to pass full tag
1 parent 7b5c419 commit 4395c35

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/dockerhub-release-matrix.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,12 +207,12 @@ jobs:
207207
SLACK_MESSAGE: "Building Postgres image failed for version ${{ matrix.version }}"
208208
SLACK_FOOTER: ""
209209

210-
publish:
210+
publish:
211211
needs: [build, merge_manifest]
212212
strategy:
213213
matrix:
214-
version: ${{ fromJson(needs.build.outputs.versions) }}
214+
image_tag: ${{ fromJson(needs.build.outputs.image_tags) }}
215215
uses: ./.github/workflows/mirror.yml
216216
with:
217-
version: ${{ matrix.version }}
217+
version: ${{ matrix.image_tag }}
218218
secrets: inherit

Dockerfile-orioledb-17

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,6 @@ RUN chown -R postgres:postgres /usr/share/postgresql/
9494
# Create symbolic links for contrib directory
9595
RUN tree /nix > /tmp/tree.txt && cat /tmp/tree.txt && cat /tmp/tree.txt >&2
9696

97-
98-
# RUN mkdir -p /usr/lib/postgresql/share/postgresql/contrib \
99-
# && find /nix/var/nix/profiles/default/share/postgresql/contrib/ -mindepth 1 -type d -exec sh -c 'for dir do ln -s "$dir" "/usr/lib/postgresql/share/postgresql/contrib/$(basename "$dir")"; done' sh {} + \
100-
# && chown -R postgres:postgres /usr/lib/postgresql/share/postgresql/contrib/
101-
10297
RUN chown -R postgres:postgres /usr/lib/postgresql
10398

10499
RUN ln -sf /usr/lib/postgresql/share/postgresql/timezonesets /usr/share/postgresql/timezonesets

0 commit comments

Comments
 (0)