From 02462a56b9ac5e75bcbdb7f42bd002dc111aeabd Mon Sep 17 00:00:00 2001 From: Marco Realacci Date: Sun, 9 Jul 2023 03:17:42 +0200 Subject: [PATCH] Add debug info in the Actions workflow --- .github/workflows/deploy.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 44b20e9..9e1c50d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -22,4 +22,9 @@ jobs: uses: fjogeleit/http-request-action@v1 with: url: '${{ secrets.DEPLOY_WEBHOOK_URL }}' - method: 'POST' \ No newline at end of file + method: 'POST' + - name: Show Response + run: | + echo ${{ steps.myRequest.outputs.response }} + echo ${{ steps.myRequest.outputs.headers }} + echo ${{ fromJson(steps.myRequest.outputs.response).field_you_want_to_access }} \ No newline at end of file