Skip to content

Commit 12b8ce1

Browse files
committed
chore: add debug output for secrets validation
1 parent 6b5661f commit 12b8ce1

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,23 @@ jobs:
1717
pull-requests: write
1818
id-token: write
1919
steps:
20+
- name: Debug secrets
21+
run: |
22+
echo "APP_ID length: ${#APP_ID}"
23+
echo "PRIVATE_KEY length: ${#PRIVATE_KEY}"
24+
echo "INSTALLATION_ID length: ${#INSTALLATION_ID}"
25+
env:
26+
APP_ID: ${{ secrets.APP_ID }}
27+
PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
28+
INSTALLATION_ID: ${{ secrets.APP_INSTALLATION_ID }}
29+
2030
- name: Generate GitHub App Token
2131
id: generate-token
2232
uses: tibdex/github-app-token@v1
2333
with:
2434
app_id: ${{ secrets.APP_ID }}
2535
private_key: ${{ secrets.APP_PRIVATE_KEY }}
2636
installation_id: ${{ secrets.APP_INSTALLATION_ID }}
27-
# Add debug output to verify installation ID
28-
# installation_id: 66276079
2937

3038
- name: Checkout
3139
uses: actions/checkout@v4

0 commit comments

Comments
 (0)