diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 450f90e..407f99c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,14 +30,13 @@ jobs: - name: Send deployment request to AuthRun id: send_post run: | - # Mask the code in the logs echo "::add-mask::${{ env.code }}" - # Disable command echoing to avoid printing the curl command with the code set +x - response=$(curl -X POST "${{ secrets.FLASK_VERIFIER_URL }}/verify" \ - -d "code=${{ env.code }}" -s) - # Re-enable command echoing + + _CODE="${{ env.code }}" + response=$(curl -X POST "${{ secrets.FLASK_VERIFIER_URL }}/verify" -d "code=${_CODE}" -s) + set -x echo "Response: $response"