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 384e7c2 commit e4baf27Copy full SHA for e4baf27
action.yaml
@@ -22,19 +22,21 @@ runs:
22
- run: bash <(curl https://raw.githubusercontent.com/ory/meta/master/install.sh) -b . ory && sudo mv ./ory /usr/local/bin/
23
shell: bash
24
- run: |
25
- /usr/bin/expect <<EOF
+ /usr/bin/expect <<'EOF'
26
spawn ory auth
27
expect "Do you want to sign in to an existing Ory Network account?"
28
send -- "y\r"
29
expect "Email:"
30
send -- "${{ inputs.username }}\r"
31
expect "Password:"
32
send -- "${{ inputs.password }}\r"
33
- expect EOF
+ expect eof
34
+ EOF
35
36
37
IFS=$'\n' read -d '' -ra commands <<< "${{ inputs.commands }}"
38
for command in "${commands[@]}"; do
39
ory "$command"
40
done
41
42
+
0 commit comments