From b7e96885de2378e9bb9ed6831c560a23783ca3e6 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Mon, 26 May 2025 16:57:53 +0200 Subject: [PATCH] feat(action): enable verbose mode for release fetch script - Adds an environment variable to enable verbose logging during the Gitea release fetch script execution. - Improves debugging and traceability of script actions. --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index 4c4fc72..7b602a8 100644 --- a/action.yml +++ b/action.yml @@ -40,6 +40,7 @@ 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 }}