From 0325e061e75efe2bbe0bd171e4151d5fbf94e45b Mon Sep 17 00:00:00 2001 From: rohow Date: Thu, 16 Jul 2026 10:33:12 +0800 Subject: [PATCH] =?UTF-8?q?feat(k3s):=20=E9=9B=86=E7=BE=A4=E6=95=B4?= =?UTF-8?q?=E4=BD=93=E5=8D=87=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 30bb781..c52c9a5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,20 @@ jobs: git config user.email "$GITHUB_ACTOR@users.noreply.github.com" git submodule update --init + - name: Setup Helm + uses: azure/setup-helm@v4 + with: + version: v4.1.4 + + - name: Package charts + run: | + mkdir -p .cr-release-packages + helm package --dependency-update charts/* --destination .cr-release-packages + - name: Run chart-releaser - uses: helm/chart-releaser-action@v1.6.0 + uses: helm/chart-releaser-action@v1.7.0 + with: + skip_packaging: true + skip_existing: true env: - CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" \ No newline at end of file + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"