From 02f01974c243be24c8447e92e06228dc2cf2562f Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Mon, 26 Feb 2024 11:32:14 -0800 Subject: [PATCH] Fix release action pt2 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4833a4eeb3..89ed0441dc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ - -d @- << EOF + -d ' { "title": "Desktop Release ${{ github.ref_name }}", "text": "A new desktop release ${{ github.ref_name }} was just published", @@ -30,6 +30,6 @@ jobs: "version:${{ github.ref_name }}" ] } - EOF + ' env: DD_API_KEY: ${{ secrets.DATADOG_API_KEY }}