Commit 2c078337fa77e26554be817ead3cd080f31f6e9b
1 parent
0fed0403
Fix typo in release instructions
Showing
1 changed file
with
2 additions
and
2 deletions
README-maintainer
| ... | ... | @@ -285,8 +285,8 @@ git push upstream release-qpdf-$version |
| 285 | 285 | that includes the auth token. |
| 286 | 286 | |
| 287 | 287 | # Create release |
| 288 | -TOKEN=$(qdata-show cred github-token) | |
| 289 | -function gcurl() { curl -H "Authorization: token $TOKEN" ${1+"$@"}; } | |
| 288 | +GITHUB_TOKEN=$(qdata-show cred github-token) | |
| 289 | +function gcurl() { curl -H "Authorization: token $GITHUB_TOKEN" ${1+"$@"}; } | |
| 290 | 290 | url=$(gcurl -s -XPOST https://api.github.com/repos/qpdf/qpdf/releases -d'{"tag_name": "release-qpdf-'$version'", "name": "qpdf '$version'", "draft": true}' | jq -r '.url') |
| 291 | 291 | |
| 292 | 292 | # Get upload url | ... | ... |