From 8c4a664bc6365f2cc247b0625d4b94f8256643ea Mon Sep 17 00:00:00 2001 From: simon Date: Sun, 25 Feb 2024 12:23:00 +0000 Subject: [PATCH] .gitea/workflows/push-helm-chart.yaml aktualisiert --- .gitea/workflows/push-helm-chart.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/push-helm-chart.yaml b/.gitea/workflows/push-helm-chart.yaml index 33807d3..15b330a 100644 --- a/.gitea/workflows/push-helm-chart.yaml +++ b/.gitea/workflows/push-helm-chart.yaml @@ -21,8 +21,6 @@ jobs: run: curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash - name: Lint Helm Chart run: helm lint . - - name: pack helm release - run: helm package . push: runs-on: ubuntu-latest container: @@ -34,7 +32,12 @@ jobs: fetch-depth: 0 # all history for all branches and tags - name: Install Helm run: curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash + - name: pack helm release + run: helm package . - name: Get Package Name run: echo PACKAGE_NAME=$(ls | grep .tgz) >> $GITHUB_OUTPUT + - run: echo ${HELM_USER}>> $GITHUB_OUTPUT + - run: echo ${PACKAGE_NAME}>> $GITHUB_OUTPUT + - run: echo ${HELM_REPO}>> $GITHUB_OUTPUT - name: Push to Package Repo run: curl --user ${HELM_USER}:${HELM_PASSWD} -X POST --upload-file ./${PACKAGE_NAME} ${HELM_REPO}