From d50472d4e66e22dd6a3f55ac73a8eab048feed62 Mon Sep 17 00:00:00 2001 From: Marco Carrozzo Date: Wed, 11 Jan 2023 12:08:59 +0100 Subject: [PATCH] quiet fetch --- .github/workflows/git-tag.yml | 3 +-- scripts/travis/release/git-tag.sh | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/git-tag.yml b/.github/workflows/git-tag.yml index 660ca9a843..a31ccf3f11 100644 --- a/.github/workflows/git-tag.yml +++ b/.github/workflows/git-tag.yml @@ -84,6 +84,5 @@ jobs: node-version: 14 - name: "Release tag" run: | - echo "DRYRUN: ${{ steps.set-dryrun.outputs.dryrun }}" - git fetch --all + git fetch --all --quiet TRAVIS_BRANCH=master; set -u; bash -x ./scripts/travis/release/git-tag.sh ${{ steps.set-dryrun.outputs.dryrun }} diff --git a/scripts/travis/release/git-tag.sh b/scripts/travis/release/git-tag.sh index ccf23006c3..5960b282d8 100755 --- a/scripts/travis/release/git-tag.sh +++ b/scripts/travis/release/git-tag.sh @@ -1,6 +1,5 @@ #!/bin/bash echo "ARG: $1" -exit 0 if [[ $TRAVIS_BRANCH == "master" ]]; then VERSION=$(grep -m1 version package.json | awk '{ print $2 }' | sed 's/[", ]//g') else