diff --git a/.github/workflows/react-native-cicd.yml b/.github/workflows/react-native-cicd.yml index 534cbea..a9517a6 100644 --- a/.github/workflows/react-native-cicd.yml +++ b/.github/workflows/react-native-cicd.yml @@ -413,24 +413,24 @@ jobs: --arg buildUrl "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ '{ "version": $version, - "title": "Release v" + $version, - "content": "$notes", + "title": ("Release v" + $version), + "content": $notes, "tags": [ { "id": "platform", - "name": "$platform" + "name": ($platform | tostring) }, { "id": "buildNumber", - "name": "$buildNumber" + "name": ($buildNumber | tostring) }, { "id": "commitSha", - "name": "$commitSha" + "name": ($commitSha | tostring) }, { "id": "buildUrl", - "name": "$buildUrl" + "name": ($buildUrl | tostring) } ] }')