We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdc07eb commit f61b95dCopy full SHA for f61b95d
.github/workflows/python-app.yml
@@ -15,6 +15,16 @@ jobs:
15
- name: Extract event details
16
run: echo "EVENT_PAYLOAD=$(jq -c . < $GITHUB_EVENT_PATH)" >> $GITHUB_ENV
17
18
+ - name: Debug API Token
19
+ run: |
20
+ if [[ -z "$API_TOKEN" ]]; then
21
+ echo "API_TOKEN is empty!"
22
+ else
23
+ echo "API_TOKEN is set (not printing for security)."
24
+ fi
25
+ env:
26
+ API_TOKEN: ${{ secrets.API_TOKEN }}
27
+
28
- name: Generate Encrypted Token
29
env:
30
WEBHOOK_SECRET: ${{ secrets.WEBHOOK_SECRET }}
0 commit comments