Skip to content

Commit

Permalink
Fix typo (removing = in curl call)
Browse files Browse the repository at this point in the history
  • Loading branch information
datapythonista committed Jan 27, 2024
1 parent d7929aa commit 9d91114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
GITHUB_TOKEN: "${{ inputs.token }}"
ARTIFACT_JOB: "${{ inputs.job }}"
run: |
PREVIEWER_RESPONSE=$(curl -X POST --data-urlencode="job=${JOB}" ${PREVIEWER_URL})
PREVIEWER_RESPONSE=$(curl -X POST --data-urlencode "job=${JOB}" ${PREVIEWER_URL})
if [[ $? ]]; then
curl -H "Authorization: token ${GITHUB_TOKEN}" \
-d '{"body": "${PREVIEWER_RESPONSE}"}' \
Expand Down

0 comments on commit 9d91114

Please sign in to comment.