From 03c13087c6495ff7cc0660229d961df8cfdbf9ed Mon Sep 17 00:00:00 2001 From: Olof Pettersson Date: Wed, 10 Dec 2025 20:39:17 +0100 Subject: [PATCH] Use runner to build, install helm as a step --- .gitea/workflows/publish-chart.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/publish-chart.yaml b/.gitea/workflows/publish-chart.yaml index e0fc6a9..aedb490 100644 --- a/.gitea/workflows/publish-chart.yaml +++ b/.gitea/workflows/publish-chart.yaml @@ -10,12 +10,15 @@ on: jobs: publish: runs-on: ubuntu-latest # Or whatever label your runner uses - container: - image: alpine/helm:3.12.0 # Use an image with Helm pre-installed steps: - name: Checkout uses: actions/checkout@v3 + - name: Install Helm + uses: azure/setup-helm@v3 + with: + version: v3.12.0 + - name: Install Dependencies run: helm dependency update .