From 79b37b085f7b62a9a6d6cef17d07bcabe9f98580 Mon Sep 17 00:00:00 2001 From: Roman Date: Wed, 17 Jan 2024 19:48:55 +0800 Subject: [PATCH] fix: variable substitution --- .github/workflows/test_common.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_common.yml b/.github/workflows/test_common.yml index 12a4f489..a4b3195d 100644 --- a/.github/workflows/test_common.yml +++ b/.github/workflows/test_common.yml @@ -79,5 +79,6 @@ jobs: echo "- **Additonal Nodes**: ${{ env.ADDITIONAL_NODES}}" >> $GITHUB_STEP_SUMMARY echo "## Test Results" >> $GITHUB_STEP_SUMMARY echo "Allure report will be available at: https://waku-org.github.io/waku-interop-tests/${{ github.run_number }}" >> $GITHUB_STEP_SUMMARY - curl -H "Content-Type: application/json" -X POST -d '{"username": "${{ github.workflow }}", "content": "${GITHUB_STEP_SUMMARY}" }' --url '${{ secrets.DISCORD_TEST_REPORTS_WH }}' + echo "{"username": "${{ github.workflow }}", "content": "${GITHUB_STEP_SUMMARY}" }" > $GITHUB_STEP_SUMMARY + curl -H "Content-Type: application/json" -X POST -d "${GITHUB_STEP_SUMMARY}" --url "${{ secrets.DISCORD_TEST_REPORTS_WH }}"