Skip to content

Commit

Permalink
ci: fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Hazmi35 committed Oct 9, 2024
1 parent a047936 commit 2a6e6c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
packages: write
uses: ./.github/workflows/build.yaml
with:
dockerfile: "16/Dockerfile"
dockerfile: "17/Dockerfile"
images: |
ghcr.io/${{ github.repository_owner }}/postgres
secrets:
Expand Down
2 changes: 1 addition & 1 deletion 16/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apk update && apk add --no-cache git gcc musl-dev \
# TimescaleDB extension
FROM docker.io/timescale/timescaledb:2.17.0-pg16-bitnami AS timescaledb

# Copy the last 3 versions of the extension
# Select and copy the last 3 versions of the extension
RUN cd /opt/bitnami/postgresql/lib \
&& cp timescaledb.so /tmp \
&& cp -r $(ls . | grep timescaledb- | sort | tail -n 3) /tmp \
Expand Down
2 changes: 1 addition & 1 deletion 17/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apk update && apk add --no-cache git gcc musl-dev \
# TimescaleDB extension
FROM docker.io/timescale/timescaledb:2.17.0-pg17-bitnami AS timescaledb

# Select the last 3 versions of the extension
# Select and copy the last 3 versions of the extension
RUN cd /opt/bitnami/postgresql/lib \
&& cp timescaledb.so /tmp \
&& cp -r $(ls . | grep timescaledb- | sort | tail -n 3) /tmp \
Expand Down

0 comments on commit 2a6e6c2

Please sign in to comment.