From 2e8f8b138977bd5341ffb3056e8c4829c17bfeb8 Mon Sep 17 00:00:00 2001 From: Itay Grudev Date: Sat, 23 Mar 2024 14:28:05 +0200 Subject: [PATCH] Bug Fix: Release process package repository incorrect address Signed-off-by: Itay Grudev --- .github/workflows/release-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 5903c96..7328b0c 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -75,10 +75,10 @@ jobs: if [ -z "${pkg:-}" ]; then break fi - helm push "${pkg}" oci://ghcr.io/"${GITHUB_REPOSITORY_OWNER}"/charts + helm push "${pkg}" oci://ghcr.io/"${GITHUB_REPOSITORY}" file=${pkg##*/} name=${file%-*} version=${file%.*} version=${version##*-} - cosign sign --yes ghcr.io/"${GITHUB_REPOSITORY_OWNER}"/charts/"${name}":"${version}" + cosign sign --yes ghcr.io/"${GITHUB_REPOSITORY}"/"${name}":"${version}" done