Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ GitHub release:
{%- if sample_signing_key_update_tag %}
- [ ] Wait until the Bodhi update shows "Signed :heavy_check_mark:" in the Metadata box.
- [ ] Verify that the signing script can fetch the release binaries by running `./signing-ticket.sh test <x.y.z-r> <output-dir>`, where `r` is the Release of the Fedora package without the dist tag (probably `1`)
- [ ] Run `./signing-ticket.sh ticket <x.y.z-r>` and paste the output into a [releng ticket](forge.fedoraproject.org/releng/tickets/issues/new).
- [ ] Run `./signing-ticket.sh ticket <x.y.z-r>` and paste the output into a [releng ticket](https://forge.fedoraproject.org/releng/tickets/issues/new).
- [ ] Wait for the ticket to be closed
- [ ] Download the artifacts and signatures
- [ ] Verify the signatures
Expand Down
2 changes: 1 addition & 1 deletion go/signing-ticket.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ do_sign() {
# Grab the binaries out of the redistributable rpm
rpm="{{ signing_base }}-redistributable-${VR}.noarch.rpm"
koji download-build --key $RPMKEY --rpm $rpm
rpm -qip $rpm | grep -P "^Signature.*${RPMKEY}$" # Verify the output has the key in it
rpm -Kv "$rpm" 2>&1 | grep -qi "${RPMKEY}" # Verify the output has the key in it
rpm2cpio $rpm | cpio -idv './usr/share/{{ fedora_package }}/{{ signing_base }}-*'

# Rename the binaries
Expand Down