Skip to content

Commit e4baf27

Browse files
committed
fix here doc issues
1 parent 384e7c2 commit e4baf27

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

action.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,21 @@ runs:
2222
- run: bash <(curl https://raw.githubusercontent.com/ory/meta/master/install.sh) -b . ory && sudo mv ./ory /usr/local/bin/
2323
shell: bash
2424
- run: |
25-
/usr/bin/expect <<EOF
25+
/usr/bin/expect <<'EOF'
2626
spawn ory auth
2727
expect "Do you want to sign in to an existing Ory Network account?"
2828
send -- "y\r"
2929
expect "Email:"
3030
send -- "${{ inputs.username }}\r"
3131
expect "Password:"
3232
send -- "${{ inputs.password }}\r"
33-
expect EOF
33+
expect eof
34+
EOF
3435
shell: bash
3536
- run: |
3637
IFS=$'\n' read -d '' -ra commands <<< "${{ inputs.commands }}"
3738
for command in "${commands[@]}"; do
3839
ory "$command"
3940
done
4041
shell: bash
42+

0 commit comments

Comments
 (0)