Skip to content

Commit

Permalink
fix: set iss to id not str
Browse files Browse the repository at this point in the history
  • Loading branch information
botanical committed Jan 15, 2025
1 parent a8cfa3f commit f1526b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ jobs:
# Generate JWT
HEADER='{"alg":"RS256","typ":"JWT"}'
PAYLOAD='{"iat":'$(date +%s)',"exp":'$(($(date +%s)+540))',"iss":"'"$APP_ID"'"}'
PAYLOAD='{"iat":'$(date +%s)',"exp":'$(($(date +%s)+540))',"iss":'"$APP_ID"'}'
# Debug: Validate JSON
echo "Validating Header and Payload JSON..."
echo $HEADER | jq . || { echo "Invalid Header JSON"; exit 1; }
Expand Down

0 comments on commit f1526b2

Please sign in to comment.