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 9603cac commit 967aa19Copy full SHA for 967aa19
.github/workflows/moodle-release.yml
@@ -55,12 +55,12 @@ jobs:
55
--data-urlencode "vcstag=${TAGNAME}" \
56
--data-urlencode "changelogurl=${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/commits/${TAGNAME}" \
57
--data-urlencode "altdownloadurl=${ZIPURL}")
58
- echo "::set-output name=response::${RESPONSE}"
+ echo "response=${RESPONSE}" >> "$GITHUB_ENV"
59
60
- name: Evaluate the response
61
id: evaluate-response
62
env:
63
RESPONSE: ${{ steps.add-version.outputs.response }}
64
run: |
65
jq <<< ${RESPONSE}
66
- jq --exit-status ".id" <<< ${RESPONSE} > /dev/null
+ jq --exit-status ".id" <<< ${RESPONSE} > /dev/null
0 commit comments