diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 62a8cbdc396..0e338a54647 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -54,7 +54,8 @@ jobs: - name: Trigger CI build env: UNLEASH_CI_BUILDER_GITHUB_TOKEN: ${{ secrets.UNLEASH_CI_BUILDER_GITHUB_TOKEN }} + COMMITS: ${{ toJSON(github.event.commits) }} run: | curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${UNLEASH_CI_BUILDER_GITHUB_TOKEN}" \ https://api.github.com/repos/bricks-software/unleash-ci-builder/dispatches \ - -d '{"event_type":"trigger-unleash-cloud-build","client_payload":{"commits":${{toJSON(github.event.commits)}}}}' + -d '{"event_type":"trigger-unleash-cloud-build","client_payload":{"commits":$COMMITS}}'