Skip to content

Commit 9d91114

Browse files
Fix typo (removing = in curl call)
1 parent d7929aa commit 9d91114

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ runs:
2121
GITHUB_TOKEN: "${{ inputs.token }}"
2222
ARTIFACT_JOB: "${{ inputs.job }}"
2323
run: |
24-
PREVIEWER_RESPONSE=$(curl -X POST --data-urlencode="job=${JOB}" ${PREVIEWER_URL})
24+
PREVIEWER_RESPONSE=$(curl -X POST --data-urlencode "job=${JOB}" ${PREVIEWER_URL})
2525
if [[ $? ]]; then
2626
curl -H "Authorization: token ${GITHUB_TOKEN}" \
2727
-d '{"body": "${PREVIEWER_RESPONSE}"}' \

0 commit comments

Comments
 (0)