Skip to content

Commit c325e3e

Browse files
authored
Fix payload formatting in beta build workflow
1 parent b3c1f06 commit c325e3e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/send-beta-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ jobs:
108108
-d '{
109109
"event_type": "deploy-build",
110110
"client_payload": {
111-
"source_repo": "${{ github.repository }}",
112-
"artifact_url": "${{ steps.get-artifact.outputs.url }}",
113-
"token": "${{ secrets.GITHUB_TOKEN }}",
114-
"subfolder": "${{ steps.set-zip-name.outputs.subfolder }}",
115-
"zip_name": "${{ steps.set-zip-name.outputs.zip_name }}"
111+
"source_repo": "'${{ github.repository }}'",
112+
"artifact_url": "'${ARTIFACT_URL}'",
113+
"token": "'${{ secrets.GITHUB_TOKEN }}'",
114+
"subfolder": "'${SUBFOLDER}'",
115+
"zip_name": "'${ZIP_NAME}'"
116116
}
117117
}'

0 commit comments

Comments
 (0)