From 680a1f95157a6f5847f2376b83639fd3cb0ffc35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomislav=20Kopi=C4=87?= Date: Sun, 14 Sep 2025 12:22:00 +0200 Subject: [PATCH] Update job --- .gitea/workflows/helm-lint.yaml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/helm-lint.yaml b/.gitea/workflows/helm-lint.yaml index 8c0110a..4d75f6b 100644 --- a/.gitea/workflows/helm-lint.yaml +++ b/.gitea/workflows/helm-lint.yaml @@ -1,4 +1,4 @@ -name: Test Helm Chart +name: Build Docker in Container on: push: @@ -7,12 +7,15 @@ on: pull_request: jobs: - helm-lint: - runs-on: [docker, kubernetes] + build-docker: + runs-on: docker + container: + image: alpine/helm steps: - - name: Run Helm lint - uses: docker://alpine/helm:3.14.0 + - name: Checkout repository + uses: actions/checkout@v4 with: - entrypoint: ["sh", "-c"] - args: - - echo "Running helm lint on duino-miner-helm chart" && helm lint . + fetch-depth: 0 # get full history + + - name: Show current directory + run: pwd && ls -la