aboutsummaryrefslogtreecommitdiffstats
path: root/README-maintainer
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2020-10-27 23:06:13 +0100
committerJay Berkenbilt <ejb@ql.org>2020-10-27 23:06:13 +0100
commit24f62e38a7bbf0c3a0c649cda9076c89e5d16d7a (patch)
tree4612add39f0541e6f14ff9da9faf07fa38422da5 /README-maintainer
parentda7540794a71baa274516632e6c4b6ea7b7b6f09 (diff)
downloadqpdf-24f62e38a7bbf0c3a0c649cda9076c89e5d16d7a.tar.zst
Fix a few maintainer notes
Diffstat (limited to 'README-maintainer')
-rw-r--r--README-maintainer7
1 files changed, 2 insertions, 5 deletions
diff --git a/README-maintainer b/README-maintainer
index fd28f9a4..b4244247 100644
--- a/README-maintainer
+++ b/README-maintainer
@@ -267,18 +267,15 @@ chmod 555 *.AppImage
arguments. Create and push a signed tag. This should be run with
HEAD pointing to the tip of master.
-git rev-parse master upstream/master @
+git rev-parse upstream/master @
git tag -s release-qpdf-$version @ -m"qpdf $version"
git push upstream release-qpdf-$version
-* In Azure Pipelines, retain the build that was used to generate the
- release.
-
* Create a github release after pushing the tag. `gcurl` is an alias
that includes the auth token.
# Create release
-TOKEN=$(cat ~/.github-token)
+TOKEN=$(qdata-show cred github-token)
function gcurl() { curl -H "Authorization: token $TOKEN" ${1+"$@"}; }
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')