chore(ci): update script to generate Artifacthub annotations
All checks were successful
Helm / helm-lint (push) Successful in 15s
Helm / helm-unittest (push) Successful in 23s

This commit is contained in:
2025-06-04 19:52:18 +02:00
parent dff777e6de
commit 975eaa0d5d
2 changed files with 25 additions and 17 deletions

View File

@ -15,15 +15,16 @@ jobs:
run: |
apk update
apk add git npm yq
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Add Artifacthub.io annotations
run: |
NEW_TAG="$(git describe --abbrev=0)"
OLD_TAG="$(git describe --abbrev=0 --tags "$(git rev-list --tags --skip=1 --max-count=1)")"
.gitea/scripts/add-annotations.sh "${NEW_TAG}" "${OLD_TAG}"
NEW_TAG="$(git tag --sort=-version:refname | head -n 1)"
OLD_TAG="$(git tag --sort=-version:refname | head -n 2 | tail -n 1)"
.gitea/scripts/add-annotations.sh "${OLD_TAG}" "${NEW_TAG}"
- name: Package chart
env: