Skip to content

Commit 33f8ae3

Browse files
committed
chore: matrix in all tasks
1 parent d3392e0 commit 33f8ae3

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,10 @@ jobs:
199199

200200
publish:
201201
needs: [build, merge_manifest]
202+
strategy:
203+
matrix:
204+
version: ${{ fromJson(needs.build.outputs.versions) }}
202205
uses: ./.github/workflows/mirror.yml
203206
with:
204-
version: ${{ needs.build.outputs.docker_version }}
205-
secrets: inherit
207+
version: ${{ matrix.version }}
208+
secrets: inherit

Dockerfile-15

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ WORKDIR /
7575
RUN mkdir -p /usr/lib/postgresql/bin \
7676
/usr/lib/postgresql/share/postgresql \
7777
/usr/share/postgresql \
78+
/var/lib/postgresql \
7879
&& chown -R postgres:postgres /usr/lib/postgresql \
80+
&& chown -R postgres:postgres /var/lib/postgresql \
7981
&& chown -R postgres:postgres /usr/share/postgresql
8082

8183
# Create symbolic links

Dockerfile-orioledb-17

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,8 @@ WORKDIR /
7676
RUN mkdir -p /usr/lib/postgresql/bin \
7777
/usr/lib/postgresql/share/postgresql \
7878
/usr/share/postgresql \
79-
# /usr/lib/postgresql/share/postgresql/contrib \
80-
#/usr/lib/postgresql/share/postgresql/timezonesets \
81-
#/usr/lib/postgresql/share/postgresql/tsearch_data \
82-
# /usr/lib/postgresql/share/postgresql/extension \
79+
/var/lib/postgresql \
80+
&& chown -R postgres:postgres /usr/lib/postgresql \
8381
&& chown -R postgres:postgres /usr/lib/postgresql \
8482
&& chown -R postgres:postgres /usr/share/postgresql
8583

0 commit comments

Comments
 (0)