Skip to content

Commit 37967d9

Browse files
committed
Update debug action paths
1 parent 10def36 commit 37967d9

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/actions/debug/action.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ inputs:
88
default: '0'
99

1010
outputs:
11-
socket_cli_debug:
12-
description: 'The processed SOCKET_CLI_DEBUG value'
13-
value: ${{ steps.parse.outputs.socket_cli_debug }}
11+
socket_debug:
12+
description: 'The processed SOCKET_DEBUG value'
13+
value: ${{ steps.parse.outputs.socket_debug }}
1414
debug_value:
1515
description: 'The processed DEBUG value'
1616
value: ${{ steps.parse.outputs.debug_value }}
@@ -27,15 +27,15 @@ runs:
2727
# Check if input is in DEBUG='...' format
2828
if [[ "$debug_input" =~ ^DEBUG=[\'\"]*(.+)[\'\"]*$ ]]; then
2929
debug_value="${BASH_REMATCH[1]}"
30-
echo "socket_cli_debug=$debug_value" >> $GITHUB_OUTPUT
30+
echo "socket_debug=$debug_value" >> $GITHUB_OUTPUT
3131
echo "debug_value=$debug_value" >> $GITHUB_OUTPUT
3232
echo "DEBUG=$debug_value" >> $GITHUB_ENV
33-
echo "SOCKET_CLI_DEBUG=$debug_value" >> $GITHUB_ENV
33+
echo "SOCKET_DEBUG=$debug_value" >> $GITHUB_ENV
3434
# Check if it's just a simple value (0, 1, or debug string)
3535
else
36-
echo "socket_cli_debug=$debug_input" >> $GITHUB_OUTPUT
36+
echo "socket_debug=$debug_input" >> $GITHUB_OUTPUT
3737
echo "debug_value=$debug_input" >> $GITHUB_OUTPUT
38-
echo "SOCKET_CLI_DEBUG=$debug_input" >> $GITHUB_ENV
38+
echo "SOCKET_DEBUG=$debug_input" >> $GITHUB_ENV
3939
if [[ "$debug_input" != "0" ]]; then
4040
echo "DEBUG=$debug_input" >> $GITHUB_ENV
4141
fi

0 commit comments

Comments
 (0)