7 Commits

Author SHA1 Message Date
414efe2565 chore(fix): temporarily add --verify=false to helm plugin install
All checks were successful
changelog / changelog (push) Successful in 16s
check-and-test / check-and-test (push) Successful in 50s
generate-chart / generate-chart-publish (push) Successful in 40s
generate-chart / release-gitea (push) Successful in 10s
2026-01-20 20:08:56 -05:00
f595a99b80 chore(fix): update changelog config for duby gitea
Some checks failed
changelog / changelog (push) Successful in 8s
check-and-test / check-and-test (push) Successful in 48s
generate-chart / generate-chart-publish (push) Failing after 37s
generate-chart / release-gitea (push) Has been skipped
2026-01-20 13:07:46 -05:00
784e61ad44 Merge pull request 'chore(deps): update valkey docker tag to v5' (#7) from renovate/valkey-5.x into main
All checks were successful
changelog / changelog (push) Successful in 14s
check-and-test / check-and-test (push) Successful in 57s
Reviewed-on: #7
2026-01-20 18:00:43 +00:00
9fb56b2e24 Merge pull request 'chore(deps): update alpine/helm docker tag to v4' (#5) from renovate/alpine-helm-4.x into main
All checks were successful
changelog / changelog (push) Successful in 13s
check-and-test / check-and-test (push) Successful in 54s
Reviewed-on: #5
2026-01-20 16:52:03 +00:00
d5e4ee125e chore(fix): temporarily use --verify=false for helm plugins until https://github.com/helm/helm/issues/31490 is resolved
All checks were successful
check-and-test / check-and-test (pull_request) Successful in 50s
2026-01-20 11:50:52 -05:00
ff07d41123 chore(fix): adjust action for helmv4
Some checks failed
check-and-test / check-and-test (pull_request) Failing after 17s
2026-01-20 11:46:17 -05:00
5264f5887e chore(deps): update alpine/helm docker tag to v4
Some checks failed
commitlint / check-and-test (pull_request) Successful in 18s
check-and-test / check-and-test (pull_request) Failing after 14s
2026-01-17 01:01:21 +00:00
3 changed files with 10 additions and 8 deletions

View File

@@ -20,13 +20,13 @@ jobs:
run: |
git sv rn -o changelog.md
export RELEASE_NOTES=$(cat changelog.md)
export ISSUE_NUMBER=$(curl -s "https://gitea.com/api/v1/repos/gitea/helm-gitea/issues?state=open&q=Changelog%20for%20upcoming%20version" | jq '.[].number')
export ISSUE_NUMBER=$(curl -s "https://git.dubyatp.xyz/api/v1/repos/williamp/helm-gitea/issues?state=open&q=Changelog%20for%20upcoming%20version" | jq '.[].number')
echo $RELEASE_NOTES
JSON_DATA=$(echo "" | jq -Rs --arg title 'Changelog for upcoming version' --arg body "$(cat changelog.md)" '{title: $title, body: $body}')
if [ -z "$ISSUE_NUMBER" ]; then
curl -s -X POST "https://gitea.com/api/v1/repos/gitea/helm-gitea/issues" -H "Authorization: token ${{ secrets.ISSUE_RW_TOKEN }}" -H "Content-Type: application/json" -d "$JSON_DATA"
curl -s -X POST "https://git.dubyatp.xyz/api/v1/repos/williamp/helm-gitea/issues" -H "Authorization: token ${{ secrets.ISSUE_RW_TOKEN }}" -H "Content-Type: application/json" -d "$JSON_DATA"
else
curl -s -X PATCH "https://gitea.com/api/v1/repos/gitea/helm-gitea/issues/$ISSUE_NUMBER" -H "Authorization: token ${{ secrets.ISSUE_RW_TOKEN }}" -H "Content-Type: application/json" -d "$JSON_DATA"
curl -s -X PATCH "https://git.dubyatp.xyz/api/v1/repos/williamp/helm-gitea/issues/$ISSUE_NUMBER" -H "Authorization: token ${{ secrets.ISSUE_RW_TOKEN }}" -H "Content-Type: application/json" -d "$JSON_DATA"
fi

View File

@@ -21,7 +21,7 @@ jobs:
- name: Install helm
env:
# renovate: datasource=docker depName=alpine/helm
HELM_VERSION: "3.19.0"
HELM_VERSION: "4.0.5"
run: |
curl --fail --location --output /dev/stdout --silent --show-error https://get.helm.sh/helm-v${HELM_VERSION}-linux-$(dpkg --print-architecture).tar.gz | tar --extract --gzip --file /dev/stdin
mv linux-$(dpkg --print-architecture)/helm /usr/local/bin/
@@ -65,9 +65,10 @@ jobs:
# Using helm gpg plugin as 'helm package --sign' has issues with gpg2: https://github.com/helm/helm/issues/2843
- name: package chart
# remove `--verify=false` once https://github.com/helm/helm/issues/31490 is resolved
run: |
# FIXME: use upstream after https://github.com/technosophos/helm-gpg/issues/1 is solved
helm plugin install https://github.com/pat-s/helm-gpg
helm plugin install https://github.com/pat-s/helm-gpg --verify=false
helm dependency build
helm package --version "${GITHUB_REF#refs/tags/v}" ./
mkdir gitea

View File

@@ -15,7 +15,7 @@ env:
jobs:
check-and-test:
runs-on: ubuntu-latest
container: alpine/helm:3.19.0
container: alpine/helm:4.0.5
steps:
- name: install tools
run: |
@@ -25,12 +25,13 @@ jobs:
- name: install chart dependencies
run: helm dependency build
- name: lint
run: helm lint
run: helm lint .
- name: template
run: helm template --debug gitea-helm .
- name: prepare unit test environment
# remove `--verify=false` once https://github.com/helm/helm/issues/31490 is resolved
run: |
helm plugin install --version ${{ env.HELM_UNITTEST_VERSION }} https://github.com/helm-unittest/helm-unittest
helm plugin install --version ${{ env.HELM_UNITTEST_VERSION }} https://github.com/helm-unittest/helm-unittest --verify=false
git submodule update --init --recursive
- name: unit tests
env: