Skip to content

Commit 478fc99

Browse files
committed
fix create and push multi-arch manifest
1 parent f50ad2a commit 478fc99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666

6767
- name: Create and push multi-arch manifest
6868
run: |
69-
docker manifest create \
69+
docker manifest create --amend \
7070
cr.eu-north1.nebius.cloud/soperator/helmrelease-trigger-operator:${{ steps.get_version.outputs.version }} \
7171
cr.eu-north1.nebius.cloud/soperator/helmrelease-trigger-operator:${{ steps.get_version.outputs.version }}-amd \
7272
cr.eu-north1.nebius.cloud/soperator/helmrelease-trigger-operator:${{ steps.get_version.outputs.version }}-arm
@@ -124,5 +124,5 @@ jobs:
124124
echo "Packaging chart ${CHART_NAME} as ${CHART_TARGET}."
125125
helm package -d "${RELEASE_PATH}" "${HELM_PATH}/helm"
126126
127-
echo "Pushing helm-${CHART_TARGET} to Container registry - ${OCI_REPO}"
128-
helm push "${RELEASE_PATH}/helm-${CHART_TARGET}" "${OCI_REPO}"
127+
echo "Pushing ${CHART_TARGET} to Container registry - ${OCI_REPO}"
128+
helm push "${RELEASE_PATH}/${CHART_TARGET}" "${OCI_REPO}"

0 commit comments

Comments
 (0)