Skip to content

Commit

Permalink
fix here doc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaGiorgadze committed May 23, 2023
1 parent 384e7c2 commit e4baf27
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,21 @@ runs:
- run: bash <(curl https://raw.githubusercontent.com/ory/meta/master/install.sh) -b . ory && sudo mv ./ory /usr/local/bin/
shell: bash
- run: |
/usr/bin/expect <<EOF
/usr/bin/expect <<'EOF'
spawn ory auth
expect "Do you want to sign in to an existing Ory Network account?"
send -- "y\r"
expect "Email:"
send -- "${{ inputs.username }}\r"
expect "Password:"
send -- "${{ inputs.password }}\r"
expect EOF
expect eof
EOF
shell: bash
- run: |
IFS=$'\n' read -d '' -ra commands <<< "${{ inputs.commands }}"
for command in "${commands[@]}"; do
ory "$command"
done
shell: bash

0 comments on commit e4baf27

Please sign in to comment.