Skip to content

Commit 11d2ef8

Browse files
committed
foo
1 parent f1a19f7 commit 11d2ef8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/alarm.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,9 @@ jobs:
342342
# exit with 1 if regressions are found, 0 otherwise
343343
sys.exit(1 if reg_found else 0)
344344
PY
345-
echo "HAS_REGRESSIONS=$?" >> "$GITHUB_ENV"
345+
rc=$?
346+
echo "HAS_REGRESSIONS=${rc}" >> "$GITHUB_ENV"
347+
HAS_REGRESSIONS="${rc}"
346348
} || true
347349
348350
# expose outputs to later steps

0 commit comments

Comments
 (0)