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