From 2b37f1ec31c31c6b76f6c18da47deca99908db36 Mon Sep 17 00:00:00 2001 From: "Tomi P. Hakala" Date: Wed, 15 Jan 2025 22:43:10 +0200 Subject: [PATCH] chore: enable debug logging for GitHub Actions workflow - Added environment variables to enable debug logging for GitHub Actions, specifically `ACTIONS_RUNNER_DEBUG` and `ACTIONS_STEP_DEBUG`. - This enhancement will assist in troubleshooting and provide more visibility into the workflow execution process. These changes aim to improve the debugging capabilities of the release build workflow. --- .github/workflows/release-build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index df07acb..291f50d 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -5,6 +5,10 @@ on: types: [created, edited] workflow_dispatch: +env: + ACTIONS_RUNNER_DEBUG: true + ACTIONS_STEP_DEBUG: true + permissions: contents: write packages: write