From 1d222749630da344c4e1e9769bb604e860ade3a6 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Mon, 26 May 2025 16:51:27 +0200 Subject: [PATCH] feat(action): enable verbose mode for script execution - Adds an environment variable to enable verbose output - Aims to improve debugging and visibility during script runs --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index 17e7b88..4c4fc72 100644 --- a/action.yml +++ b/action.yml @@ -52,6 +52,7 @@ 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 }}"