From 27ac839440eee3489eeb1eb9bcce7b5594cba685 Mon Sep 17 00:00:00 2001 From: simon Date: Sun, 25 Feb 2024 11:49:48 +0000 Subject: [PATCH] update test file --- .gitea/workflows/test.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index aef8201..03ae290 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -17,6 +17,9 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 # all history for all branches and tags - - run: apt install helm -y - - run: helm lint . - - run: helm package . \ No newline at end of file + - name: Install Helm + run: curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash + - name: Lint Helm Chart + run: helm lint . + - name: pack helm release + run: helm package . \ No newline at end of file