Skip to content

Commit 66186cc

Browse files
authored
fix(action): correct input
1 parent 6128fdb commit 66186cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ runs:
2626
shell: bash
2727
2828
- run: |
29-
echo '${{ inputs.runs }}' >> script.sh
30-
chmod +x script.sh
31-
./script.sh
29+
echo '${{ inputs.script }}' >> $HOME/.local/bin/script.sh
30+
chmod +x $HOME/.local/bin/script.sh
31+
$HOME/.local/bin/script.sh
3232
shell: bash

0 commit comments

Comments
 (0)