From b49701b3329ccdfff831246820afd2cac6378b58 Mon Sep 17 00:00:00 2001 From: djpbessems Date: Fri, 7 Jun 2024 00:04:52 +1000 Subject: [PATCH] build: Explicitly install jq package --- .gitea/workflows/actions.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index b589cb2..3286128 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -105,6 +105,8 @@ jobs: uses: actions/checkout@v4 - name: Prepare build environment run: | + apt-get update && apt-get install -y --no-install-recommends \ + jq curl -L https://api.github.com/repos/helm/helm/releases/latest | \ jq -r '.tag_name' | \ xargs -I {} curl -L -o /tmp/helm.tar.gz https://get.helm.sh/helm-{}-linux-amd64.tar.gz && \