From 64e10eb95f438ecd195bd8bd0b3a092c8a5c38c1 Mon Sep 17 00:00:00 2001 From: Serge Zaitsev Date: Mon, 30 Jun 2025 17:35:45 +0200 Subject: [PATCH] Chore: Make builds a bit less verbose (#107393) * make builds a bit less verbose * retrigger --- .github/actions/setup-enterprise/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/setup-enterprise/action.yml b/.github/actions/setup-enterprise/action.yml index 37c09911fc8..134a7e7f004 100644 --- a/.github/actions/setup-enterprise/action.yml +++ b/.github/actions/setup-enterprise/action.yml @@ -34,9 +34,9 @@ runs: GH_TOKEN: ${{ steps.generate_token.outputs.token }} run: | git clone https://x-access-token:${GH_TOKEN}@github.com/grafana/grafana-enterprise.git ../grafana-enterprise; - + cd ../grafana-enterprise - + if git checkout ${GITHUB_HEAD_REF}; then echo "checked out ${GITHUB_HEAD_REF}" elif git checkout ${GITHUB_BASE_REF}; then @@ -44,5 +44,5 @@ runs: else git checkout main fi - - ./build.sh + + QUIET=1 ./build.sh