gitea workflow for build and push smarti-helm-chart #1

Merged
simon merged 15 commits from add-helm-chart-test into master 2024-02-25 12:36:28 +00:00
Showing only changes of commit dc2264f128 - Show all commits

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}