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.
1 parent 4b8a1dc commit 8788b78Copy full SHA for 8788b78
action.yml
@@ -33,11 +33,12 @@ runs:
33
BINARY_NAME="ctrlc_${OS}_${ARCH}"
34
echo "BINARY_NAME: $BINARY_NAME"
35
DOWNLOAD_URL="https://github.com/${{ inputs.repo }}/releases/download/${{ inputs.version }}/$BINARY_NAME.tar.gz"
36
+ echo "DOWNLOAD_URL: $DOWNLOAD_URL"
37
38
curl -L $DOWNLOAD_URL -o binary.tar.gz
39
tar xzf binary.tar.gz
- chmod +x ${{ inputs.binary }}
40
- sudo mv ${{ inputs.binary }} /usr/local/bin/
+ chmod +x ctrlc
41
+ sudo mv ctrlc /usr/local/bin/
42
43
- name: Set Ctrlplane URL
44
shell: bash
0 commit comments