Skip to content

Commit

Permalink
Add urlencode
Browse files Browse the repository at this point in the history
  • Loading branch information
jlubken committed Aug 23, 2022
1 parent 6de2f6e commit 23eba80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ jobs:
git config user.email [email protected]
git config user.name pennsignals123
git config credential.helper store
(echo protocol=https; echo host=github.com; echo username=pennsignals123; echo password=${{ secrets.PAT }}; echo) | git credential approve
(echo protocol=https; echo host=github.com; echo username=pennsignals123; echo password=$(printf '${{ secrets.PAT }}' | jq -sRr @uri); echo) | git credential approve
git commit -m 'Serivce canary'
git push -u origin main -f -v

0 comments on commit 23eba80

Please sign in to comment.