From b1ea13a628fbab9fc8d2404ec0cc423545d71209 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Tue, 28 May 2024 11:50:23 +0200 Subject: [PATCH] CI mac: install jq only if not installed refer the commit d10a9d5c --- .github/workflows/ccpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 959d61793..2b07dc176 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -215,7 +215,7 @@ jobs: id: upload-release if: (github.repository == 'CESNET/UltraGrid' && github.ref == 'refs/heads/master') || startsWith(github.ref, 'refs/tags/') run: | - brew install jq + brew list jq >/dev/null || brew install jq .github/scripts/replace-asset.sh $TAG UltraGrid-$VERSION.dmg application/x-apple-diskimage macOS%20$(uname -m)%20build - name: Upload Build if: steps.upload-release.conclusion == 'skipped'