We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 173ed0d + 35b1038 commit b566e15Copy full SHA for b566e15
CHANGELOG.md
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## Unreleased
9
10
+## [1.2.1] - 2025-03-03
11
+
12
+### Fixed
13
14
+- Fix bash bug where the debug logging was not being set correctly.
15
16
## [1.2.0] - 2025-03-03
17
18
### Added
action.yml
@@ -222,7 +222,7 @@ runs:
222
exit 1
223
fi
224
225
- if [ -n "${ACTIONS_RUNNER_DEBUG}" || $attempt -ge 2 ]; then
+ if [[ -n "${ACTIONS_RUNNER_DEBUG}" || $attempt -ge 2 ]]; then
226
export GOLOG_LOG_LEVEL='debug'
227
228
0 commit comments