.gitea/workflows/push-helm-chart.yaml aktualisiert
Some checks failed
Build and Test / build (pull_request) Successful in 30s
Build and Push / push (pull_request) Failing after 41s

This commit is contained in:
simon 2024-02-25 12:25:22 +00:00
parent c5bb8000ba
commit dc2264f128

View File

@ -23,8 +23,11 @@ jobs:
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
- run: echo ${HELM_USER}
- run: echo ${PACKAGE_NAME}
- run: echo ${HELM_REPO}
- run: echo $HELM_USER
- run: echo $PACKAGE_NAME
- run: echo $HELM_REPO
- name: Push to Package Repo
run: curl --user ${HELM_USER}:${HELM_PASSWD} -X POST --upload-file ./${PACKAGE_NAME} ${HELM_REPO}