This repository was archived by the owner on Dec 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +27
-5
lines changed
Expand file tree Collapse file tree 2 files changed +27
-5
lines changed Original file line number Diff line number Diff line change 1313
1414jobs :
1515 release :
16- runs-on : ubuntu-latest
16+ runs-on : ubuntu-24.04
17+ permissions :
18+ contents : write
19+ packages : write
1720 steps :
1821 - name : Checkout
1922 uses : actions/checkout@v4
@@ -26,11 +29,10 @@ jobs:
2629 git config user.name "$GITHUB_ACTOR"
2730 git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
2831
29- # See https://github.com/helm/chart-releaser-action/issues/6
3032 - name : Set up Helm
3133 uses : azure/setup-helm@v4
3234 with :
33- version : v3.14.4
35+ version : v3.17.2
3436
3537 - name : Add dependency chart repos
3638 run : |
3941
4042 - name : Run chart-releaser
4143 uses : helm/chart-releaser-action@v1.7.0
44+ id : cr
4245 env :
4346 CR_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
4447 CR_GENERATE_RELEASE_NOTES : true
48+ CR_SKIP_EXISTING : true
49+
50+ - if : ${{ steps.cr.outputs.changed_charts }}
51+ name : Login to GitHub Container Registry
52+ uses : docker/login-action@v3
53+ with :
54+ registry : ghcr.io
55+ username : ${{ github.repository_owner }}
56+ password : ${{ secrets.GITHUB_TOKEN }}
57+
58+ - if : ${{ steps.cr.outputs.changed_charts }}
59+ name : Push Charts to GHCR
60+ run : |
61+ for pkg in .cr-release-packages/*; do
62+ if [ -z "${pkg:-}" ]; then
63+ break
64+ fi
65+ helm push "${pkg}" oci://ghcr.io/${{ github.repository }}
66+ done
Original file line number Diff line number Diff line change 11apiVersion : v2
22name : nextcloud
3- version : 6.6.10-build2
3+ version : 6.6.10
44# renovate: image=docker.io/library/nextcloud
5- appVersion : 30.0.8
5+ appVersion : 30.0.10
66description : A file sharing server that puts the control and security of your own data back into your hands.
77keywords :
88- nextcloud
You can’t perform that action at this time.
0 commit comments