Skip to content
This repository was archived by the owner on Dec 14, 2025. It is now read-only.

Commit b00c11e

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 390ad8a + 2bf2d3a commit b00c11e

File tree

2 files changed

+27
-5
lines changed

2 files changed

+27
-5
lines changed

.github/workflows/release.yaml

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ on:
1313

1414
jobs:
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: |
@@ -39,6 +41,26 @@ jobs:
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

charts/nextcloud/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: 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
66
description: A file sharing server that puts the control and security of your own data back into your hands.
77
keywords:
88
- nextcloud

0 commit comments

Comments
 (0)