Skip to content

Commit

Permalink
Merge pull request #1 from lomsa-dev/fix-cmd
Browse files Browse the repository at this point in the history
Fix cmd
  • Loading branch information
LukaGiorgadze authored May 23, 2023
2 parents a1bfab9 + 0407e34 commit d5106c5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,13 @@ runs:
expect eof
EOF
shell: bash
- run: |
- name: Run commands
run: |
IFS=$'\n'
for command in ${inputs.commands}
for command in $COMMANDS
do
/usr/local/bin/ory "$command"
eval "/usr/local/bin/ory $command"
done
shell: bash
env:
COMMANDS: ${{ inputs.commands }}

0 comments on commit d5106c5

Please # to comment.