From 56811408b7fdcd86cb0d33fc9a71c9dc43aec196 Mon Sep 17 00:00:00 2001 From: Lucas Bedatty Date: Mon, 6 Apr 2026 14:31:57 -0300 Subject: [PATCH] fix(build): add docker.io prefix to DockerHub cosign image refs --- .github/workflows/build.yml | 2 +- .github/workflows/typescript-build.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eee7339..7459ff0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -327,7 +327,7 @@ jobs: REFS="" if [ "$ENABLE_DOCKERHUB" == "true" ]; then - REFS="${DOCKERHUB_ORG}/${APP_NAME}@${DIGEST}" + REFS="docker.io/${DOCKERHUB_ORG}/${APP_NAME}@${DIGEST}" fi if [ "$ENABLE_GHCR" == "true" ]; then diff --git a/.github/workflows/typescript-build.yml b/.github/workflows/typescript-build.yml index 4f743a4..31d8533 100644 --- a/.github/workflows/typescript-build.yml +++ b/.github/workflows/typescript-build.yml @@ -320,7 +320,7 @@ jobs: fi if [ "$ENABLE_DOCKERHUB" == "true" ]; then - REFS="${DOCKERHUB_ORG}/${APP_NAME}@${DIGEST}" + REFS="docker.io/${DOCKERHUB_ORG}/${APP_NAME}@${DIGEST}" fi if [ "$ENABLE_GHCR" == "true" ]; then