Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: add env var IS_STEP_DEBUG to conditionally run debug prints
Currently we just uncomment debug prints, but GitHub actions actually has the option to debug the runs, which sets a secret called `secrets.ACTIONS_STEP_DEBUG`. We can not directly access this in the jobs so we need to turn it into an envirionment variable. This way we can add an `if` condition to debug steps to skip them when we're not debugging the run: `if: ${{ env.IS_STEP_DEBUG == 'true' }}` Signed-off-by: Axel Gembe <[email protected]>
- Loading branch information