From 65312f45cc75e52d16d5a07423963522ae1ec013 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D1=83=D0=B1=D0=BE=D1=87=D0=B5=D0=B2=20=D0=90=D0=BD?= =?UTF-8?q?=D1=82=D0=BE=D0=BD?= Date: Wed, 24 Jun 2026 12:47:00 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20helm-publish/action.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- helm-publish/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/helm-publish/action.yml b/helm-publish/action.yml index a05648e..1c5daa3 100644 --- a/helm-publish/action.yml +++ b/helm-publish/action.yml @@ -27,7 +27,9 @@ runs: - name: Package helm shell: bash run: | + echo 'Packing helm' helm package ${{ inputs.chart_directory }} --app-version ${{ inputs.helm_version }} --version ${{ inputs.helm_version }} --dependency-update --destination ${{ inputs.chart_directory }}/result + echo 'Helm package was build successful' - name: Install yq uses: chrisdickinson/setup-yq@latest - name: Publishing helm @@ -37,4 +39,6 @@ runs: run: | CHART_NAME=`yq r "${{ inputs.chart_directory }}/Chart.yaml" 'name'` RESULT_FILE="${HELM_RESULT_FILE}/$CHART_NAME-${{ inputs.helm_version }}.tgz" + echo 'Upload helm to ${{ vars.HELM_REPOSITORY }}' curl "${{ vars.HELM_REPOSITORY }}/api/charts?force" --data-binary "@${RESULT_FILE}" -v + echo 'Uploaded success'