diff --git a/action.yml b/action.yml index 7b602a8..17e7b88 100644 --- a/action.yml +++ b/action.yml @@ -40,7 +40,6 @@ runs: - name: Fetch release from Gitea shell: bash run: | - export VERBOSE="true" "${{ github.action_path }}/scripts/fetch-gitea-release.sh" env: GITEA_TOKEN: ${{ inputs.gitea_token }} @@ -53,7 +52,6 @@ runs: shell: bash run: | TAG_NAME=${{ inputs.tag_name }} - export VERBOSE="true" export TAG="$TAG_NAME" export WORKDIR="$GT_RSA_RELEASE_DIR" export GITHUB_OWNER="${{ inputs.github_owner }}" diff --git a/scripts/fetch-gitea-release.sh b/scripts/fetch-gitea-release.sh index fba8993..9d655ba 100755 --- a/scripts/fetch-gitea-release.sh +++ b/scripts/fetch-gitea-release.sh @@ -15,7 +15,7 @@ curl_exec() { if [[ "$VERBOSE" == "true" ]]; then curl -v "$@" else - curl -s "$@" > /dev/null + curl -s "$@" fi } diff --git a/scripts/upsert-github-release.sh b/scripts/upsert-github-release.sh index 94fb270..84c4510 100755 --- a/scripts/upsert-github-release.sh +++ b/scripts/upsert-github-release.sh @@ -16,7 +16,7 @@ curl_exec() { if [[ "$VERBOSE" == "true" ]]; then curl -v "$@" else - curl -s "$@" > /dev/null + curl -s "$@" fi }