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
- uses : int128/docker-manifest-create-action@v2
56
56
id : manifest
57
57
with :
58
- tags : ghcr.io/${{ github.repository }}:${{ matrix.version }}
58
+ tags : |
59
+ ghcr.io/${{ github.repository }}:${{ matrix.version }}
59
60
sources : |
60
61
ghcr.io/${{ github.repository }}-linux-amd64:${{ matrix.version }}
61
62
ghcr.io/${{ github.repository }}-linux-arm64:${{ matrix.version }}
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ OS ?= $(shell uname | tr A-Z a-z)
7
7
VERSION ?= 17-bookworm
8
8
9
9
# Docker repository
10
+ DOCKER_SOURCE ?= https://github.com/mutablelogic/docker-postgres
10
11
DOCKER_REPO ?= ghcr.io/mutablelogic/docker-postgres
11
12
BUILD_TAG = ${DOCKER_REPO}-${OS}-${ARCH}:${VERSION}
12
13
@@ -19,7 +20,7 @@ docker: docker-dep
19
20
--build-arg ARCH=${ARCH} \
20
21
--build-arg OS=${OS} \
21
22
--build-arg VERSION=${VERSION} \
22
- --build-arg SOURCE=${DOCKER_REPO } \
23
+ --build-arg SOURCE=${DOCKER_SOURCE } \
23
24
-f Dockerfile .
24
25
25
26
# Push the docker image
You can’t perform that action at this time.
0 commit comments