File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments