From 5386b505b068d1105b03901caf32e4abd9c587d7 Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Wed, 6 Sep 2023 05:32:40 -0700 Subject: [PATCH] Remote signing; fix JSON data This accidentally used a comma instead of a colon. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ea9b2db0..81e23518a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -133,4 +133,4 @@ jobs: uses: joelwmale/webhook-action@ee20d8c79e728c2d339b114fd27772ee0226aa41 with: url: ${{ secrets.SIGNER_WEBHOOK_URL }} - body: ${{ format('{{"TAG_ID", "{0}"}}', steps.name.outputs.GITHUB_TAG) }} + body: '{"TAG_ID": "${{ steps.name.outputs.GITHUB_TAG }}"}'