Update job
Some checks failed
Build Docker in Container / build-docker (push) Failing after 22s

This commit is contained in:
2025-09-14 12:22:00 +02:00
parent e414e0d004
commit 680a1f9515

View File

@@ -1,4 +1,4 @@
name: Test Helm Chart name: Build Docker in Container
on: on:
push: push:
@@ -7,12 +7,15 @@ on:
pull_request: pull_request:
jobs: jobs:
helm-lint: build-docker:
runs-on: [docker, kubernetes] runs-on: docker
container:
image: alpine/helm
steps: steps:
- name: Run Helm lint - name: Checkout repository
uses: docker://alpine/helm:3.14.0 uses: actions/checkout@v4
with: with:
entrypoint: ["sh", "-c"] fetch-depth: 0 # get full history
args:
- echo "Running helm lint on duino-miner-helm chart" && helm lint . - name: Show current directory
run: pwd && ls -la