Skip to content

Commit 49c0216

Browse files
authored
fix(build): add docker.io prefix to DockerHub cosign image refs (#206)
1 parent baa43a2 commit 49c0216

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ jobs:
327327
REFS=""
328328
329329
if [ "$ENABLE_DOCKERHUB" == "true" ]; then
330-
REFS="${DOCKERHUB_ORG}/${APP_NAME}@${DIGEST}"
330+
REFS="docker.io/${DOCKERHUB_ORG}/${APP_NAME}@${DIGEST}"
331331
fi
332332
333333
if [ "$ENABLE_GHCR" == "true" ]; then

.github/workflows/typescript-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ jobs:
320320
fi
321321
322322
if [ "$ENABLE_DOCKERHUB" == "true" ]; then
323-
REFS="${DOCKERHUB_ORG}/${APP_NAME}@${DIGEST}"
323+
REFS="docker.io/${DOCKERHUB_ORG}/${APP_NAME}@${DIGEST}"
324324
fi
325325
326326
if [ "$ENABLE_GHCR" == "true" ]; then

0 commit comments

Comments
 (0)