Commit 198b96471a6666ea5386f0577723215c5fbb4ea8
1 parent
e4484fd9
Notes for next release
Showing
2 changed files
with
6 additions
and
3 deletions
README-maintainer
| ... | ... | @@ -373,8 +373,8 @@ chmod 555 *.AppImage |
| 373 | 373 | HEAD pointing to the tip of main. |
| 374 | 374 | |
| 375 | 375 | git rev-parse qpdf/main @ |
| 376 | -git tag -s release-qpdf-$version @ -m"qpdf $version" | |
| 377 | -git push qpdf release-qpdf-$version | |
| 376 | +git tag -s v$version @ -m"qpdf $version" | |
| 377 | +git push qpdf v$version | |
| 378 | 378 | |
| 379 | 379 | * Update documentation branches |
| 380 | 380 | |
| ... | ... | @@ -391,7 +391,8 @@ git push qpdf @:stable |
| 391 | 391 | # Create release |
| 392 | 392 | GITHUB_TOKEN=$(qdata-show cred github-token) |
| 393 | 393 | function gcurl() { curl -H "Authorization: token $GITHUB_TOKEN" ${1+"$@"}; } |
| 394 | -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') | |
| 394 | + | |
| 395 | +url=$(gcurl -s -XPOST https://api.github.com/repos/qpdf/qpdf/releases -d'{"tag_name": "v'$version'", "name": "qpdf '$version'", "draft": true}' | jq -r '.url') | |
| 395 | 396 | |
| 396 | 397 | # Get upload url |
| 397 | 398 | upload_url=$(gcurl -s $url | jq -r '.upload_url' | sed -E -e 's/\{.*\}//') | ... | ... |