From 15928d0cc4a0c7d4f547614aec593dc9bb220188 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Mon, 26 May 2025 16:42:56 +0200 Subject: [PATCH] feat(action): enable verbose mode for debugging - Adds an environment variable to enable verbose logging - Facilitates easier debugging during action execution --- 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 }}"