We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01986cb commit 603b212Copy full SHA for 603b212
1 file changed
action.yml
@@ -35,6 +35,7 @@ runs:
35
- name: Download roxctl
36
shell: bash
37
run: |
38
+ set -euo pipefail ${RUNNER_DEBUG:+-x}
39
case "${{ runner.os }}" in
40
macOS) OS=darwin EXT='' ;;
41
Windows) OS=windows EXT='.exe' ;;
@@ -56,6 +57,7 @@ runs:
56
57
fi
58
mkdir -p ${{ inputs.install-dir }}
59
curl -H "Authorization: Bearer ${{ inputs.central-token }}" -H "User-Agent: roxctl-installer-GHA" \
60
+ ${RUNNER_DEBUG:+--verbose} \
61
${SKIP_TLS_VERIFY}--fail -S -L --retry 5 \
62
"${ENDPOINT}${EXT}" --output "${{ inputs.install-dir }}/roxctl${EXT}"
63
chmod +x "${{ inputs.install-dir }}/roxctl${EXT}"
0 commit comments