We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a52078 commit 0b67941Copy full SHA for 0b67941
README.md
@@ -67,9 +67,9 @@ jobs:
67
- name: Testing
68
id: test-app
69
run: |
70
- echo "Running tests against sandbox with id: ${{ steps.start-sandbox.outputs.sandbox_id }}
71
- shortcuts=${{ steps.start-sandbox.sandbox_shortcuts }}
72
- readarray -t shortcuts <<< "$(jq '. | .flask-app[]' <<< '${{ steps.start-sandbox.sandbox_shortcuts }}')"
+ echo "Running tests against sandbox with id: ${{ steps.start-sandbox.outputs.sandbox_id }}"
+ shortcuts=${{ steps.start-sandbox.outputs.sandbox_shortcuts }}
+ readarray -t shortcuts <<< "$(jq '. | .flask-app[]' <<< '${{ steps.start-sandbox.outputs.sandbox_shortcuts }}')"
73
for shortcut in ${shortcuts[@]}; do
74
"Do something with this ${shortcut}."
75
done
0 commit comments