Compare commits

...

8 Commits

Author SHA1 Message Date
b40855a7a0 asd
Some checks failed
Run Helm tests / Execute helm template (push) Successful in 10s
Run Helm tests / Execute helm lint (push) Successful in 18s
Run Helm tests / Execute helm unittest (push) Successful in 27s
Markdown linter / Execute npm run readme:lint (push) Successful in 9s
Markdown linter / Execute npm run readme:link (push) Successful in 36s
Markdown linter / Execute npm run readme:parameters (push) Successful in 10s
Release / publish-chart (push) Failing after 59s
Release / publish-release-notes (push) Has been skipped
2026-02-15 21:05:23 +01:00
2f7a1c478a asd
Some checks failed
Run Helm tests / Execute helm lint (push) Successful in 9s
Run Helm tests / Execute helm template (push) Successful in 17s
Run Helm tests / Execute helm unittest (push) Successful in 25s
Markdown linter / Execute npm run readme:lint (push) Successful in 8s
Markdown linter / Execute npm run readme:parameters (push) Successful in 9s
Markdown linter / Execute npm run readme:link (push) Successful in 36s
Release / publish-chart (push) Failing after 30s
Release / publish-release-notes (push) Has been skipped
2026-02-15 20:55:13 +01:00
23595f2d60 asd
Some checks failed
Run Helm tests / Execute helm lint (push) Successful in 17s
Run Helm tests / Execute helm template (push) Successful in 9s
Markdown linter / Execute npm run readme:link (push) Successful in 20s
Markdown linter / Execute npm run readme:lint (push) Successful in 7s
Markdown linter / Execute npm run readme:parameters (push) Successful in 10s
Run Helm tests / Execute helm unittest (push) Successful in 1m9s
Release / publish-chart (push) Failing after 32s
Release / publish-release-notes (push) Has been skipped
2026-02-15 20:02:54 +01:00
eb80fdee50 asd
Some checks failed
Run Helm tests / Execute helm template (push) Successful in 8s
Run Helm tests / Execute helm lint (push) Successful in 17s
Run Helm tests / Execute helm unittest (push) Successful in 26s
Markdown linter / Execute npm run readme:lint (push) Successful in 8s
Markdown linter / Execute npm run readme:link (push) Successful in 34s
Markdown linter / Execute npm run readme:parameters (push) Successful in 10s
Release / publish-chart (push) Failing after 1m1s
Release / publish-release-notes (push) Has been skipped
2026-02-15 19:57:29 +01:00
2b37bdfa32 asd
Some checks failed
Run Helm tests / Execute helm template (push) Successful in 9s
Run Helm tests / Execute helm lint (push) Successful in 17s
Run Helm tests / Execute helm unittest (push) Successful in 28s
Markdown linter / Execute npm run readme:lint (push) Successful in 8s
Markdown linter / Execute npm run readme:link (push) Successful in 35s
Markdown linter / Execute npm run readme:parameters (push) Successful in 9s
Release / publish-chart (push) Failing after 57s
Release / publish-release-notes (push) Has been skipped
2026-02-15 19:53:58 +01:00
146e2cf1a5 asd
Some checks failed
Run Helm tests / Execute helm lint (push) Successful in 10s
Run Helm tests / Execute helm template (push) Successful in 9s
Markdown linter / Execute npm run readme:link (push) Successful in 19s
Markdown linter / Execute npm run readme:lint (push) Successful in 8s
Markdown linter / Execute npm run readme:parameters (push) Successful in 9s
Run Helm tests / Execute helm unittest (push) Successful in 1m9s
Release / publish-chart (push) Failing after 29s
Release / publish-release-notes (push) Has been skipped
2026-02-15 19:49:28 +01:00
a78b5d6172 fix(ci): asd
Some checks failed
Run Helm tests / Execute helm lint (push) Successful in 8s
Run Helm tests / Execute helm template (push) Successful in 17s
Run Helm tests / Execute helm unittest (push) Successful in 26s
Markdown linter / Execute npm run readme:lint (push) Successful in 7s
Markdown linter / Execute npm run readme:parameters (push) Successful in 9s
Markdown linter / Execute npm run readme:link (push) Successful in 36s
Release / publish-chart (push) Failing after 29s
Release / publish-release-notes (push) Has been skipped
2026-02-15 19:43:33 +01:00
3219f22a68 asd
Some checks failed
Run Helm tests / Execute helm lint (push) Successful in 9s
Run Helm tests / Execute helm template (push) Successful in 17s
Run Helm tests / Execute helm unittest (push) Successful in 26s
Markdown linter / Execute npm run readme:lint (push) Successful in 8s
Markdown linter / Execute npm run readme:link (push) Successful in 35s
Markdown linter / Execute npm run readme:parameters (push) Successful in 9s
Release / publish-chart (push) Failing after 54s
Release / publish-release-notes (push) Has been skipped
2026-02-15 19:33:48 +01:00

View File

@@ -96,17 +96,35 @@ jobs:
env:
DOCKER_IO_REPO_NAME: ${{ vars.DOCKER_IO_REPO_NAME }}
run: |
helm push ${REPOSITORY_NAME}-${PACKAGE_VERSION}.tgz "oci://registry-1.docker.io/${DOCKER_IO_REPO_NAME}"
helm push *-${PACKAGE_VERSION}.tgz "oci://registry-1.docker.io/${DOCKER_IO_REPO_NAME}"
- uses: docker/login-action@v3.7.0
with:
registry: ${{ github.server_url }}
username: ${{ secrets.GITEA_PACKAGE_REGISTRY_USERNAME }}
password: ${{ secrets.GITEA_PACKAGE_REGISTRY_TOKEN }}
username: ${{ secrets.GT_PACKAGE_REGISTRY_USERNAME }}
password: ${{ secrets.GT_PACKAGE_REGISTRY_TOKEN }}
- name: Upload package as OCI artifact to Gitea
run: |
helm push ${REPOSITORY_NAME}-${PACKAGE_VERSION}.tgz "oci://${GITEA_SERVER_HOSTNAME}/${REPOSITORY_OWNER}/${REPOSITORY_NAME}"
helm push *-${PACKAGE_VERSION}.tgz "oci://${GITEA_SERVER_HOSTNAME}/${REPOSITORY_OWNER}/${REPOSITORY_NAME}"
- name: Upload package as Helm chart to Gitea
env:
GITEA_REGISTRY_USERNAME: ${{ secrets.GT_PACKAGE_REGISTRY_USERNAME }}
GITEA_REGISTRY_TOKEN: ${{ secrets.GT_PACKAGE_REGISTRY_TOKEN }}
run: |
ls -la
for package in *"${PACKAGE_VERSION}.tgz"*; do
echo "Uploading ${package}..."
curl \
--fail \
--request POST \
--show-error \
--silent \
--upload-file "${package}" \
--user "${GITEA_REGISTRY_USERNAME}:${GITEA_REGISTRY_TOKEN}" \
https://${GITEA_SERVER_HOSTNAME}/api/packages/${REPOSITORY_OWNER}/helm/api/charts
done
# - name: Build new index.yaml