Skip to content

Commit b0efe21

Browse files
committed
Add missing quotes
1 parent 9f5b74a commit b0efe21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/process_metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
- name: 'Check metadata for workflow dispatch directives'
7575
id: check-workflow-dispatch
7676
run: |
77-
inputs=$(echo ${{ steps.extract-metadata.outputs.metadata }} | jq -c '.[] | select(.type | contains("workflow_dispatch")) | first')
77+
inputs=$(echo '${{ steps.extract-metadata.outputs.metadata }}' | jq -c '.[] | select(.type | contains("workflow_dispatch"))')
7878
name=$(echo $inputs | jq -r '.name')
7979
if [ -n "$inputs" ]; then
8080
echo "inputs=$inputs" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)