Compare commits

..

2 Commits

Author SHA1 Message Date
7e53afe035 add helm ci
All checks were successful
Build and Publish / helm-release (push) Successful in 37s
Build and Publish / release (push) Successful in 3m7s
2025-03-08 17:29:40 -05:00
be2895695f add helm ci
All checks were successful
Build and Publish / helm-release (push) Successful in 41s
Build and Publish / release (push) Successful in 2m43s
2025-03-08 17:22:19 -05:00

View File

@ -94,14 +94,18 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install Helm - name: Install Helm
env:
BINARY_NAME: helm
run: | run: |
curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
- name: Package Chart - name: Package Chart
run: | run: |
helm package --app-version ${VERSION} ${CHART_DIR} helm package --app-version ${VERSION#v} ${CHART_DIR}
- name: Publish Chart - name: Publish Chart
env:
API_TOKEN: ${{ secrets.API_TOKEN }}
run: | run: |
curl -X POST \ curl -X POST \
-H "Authorization: token ${API_TOKEN}" \ -H "Authorization: token ${API_TOKEN}" \