We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a64151 commit 16ca02aCopy full SHA for 16ca02a
2 files changed
.github/workflows/test.yaml
@@ -14,6 +14,8 @@ jobs:
14
15
- run: apt update && apt install -y curl jq unzip
16
17
+ - run: env
18
+
19
- uses: ./
20
with:
21
name: cli/cli
setup.sh
@@ -2,6 +2,9 @@
2
3
set -euo pipefail
4
5
+# Enable debug mode if ACTIONS_RUNNER_DEBUG is true
6
+[[ "${ACTIONS_RUNNER_DEBUG:-false}" == "true" ]] && set -x
7
8
# Function to print error and exit
9
error() {
10
echo "ERROR: $1" >&2
0 commit comments