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
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ Fedora packaging:
- [ ] Run `kinit your_fas_account@FEDORAPROJECT.ORG`
- [ ] Run `fedpkg new-sources $(spectool -S butane.spec | sed 's:.*/::')`
- [ ] PR the changes in [Fedora](https://src.fedoraproject.org/rpms/butane)
- [ ] Once the PR merges to rawhide, merge rawhide into the other relevant branches (e.g. f41) then push those, for example:
- [ ] Once the PR merges to rawhide, merge rawhide into the other relevant branches (e.g. f42) then push those, for example:
```bash
git checkout rawhide
git pull --ff-only
git checkout f41
git checkout f42
git merge --ff-only rawhide
git push origin f41
git push origin f42
```
- [ ] On each of those branches run `fedpkg build` including rawhide.
- [ ] Once the builds have finished, submit them to [bodhi](https://bodhi.fedoraproject.org/updates/new), filling in:
Expand Down
8 changes: 4 additions & 4 deletions signing-ticket.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ make_script() {
#!/bin/bash
set -eux -o pipefail
# Use the Fedora 41 key for the detached signatures
KEYTOSIGNWITH='fedora-41'
# Use the Fedora 42 key for the detached signatures
KEYTOSIGNWITH='fedora-42'
VR='@@VERSION@@-@@RELEASE@@.fc41'
RPMKEY='e99d6ad1' # Fedora 41 key
VR='@@VERSION@@-@@RELEASE@@.fc42'
RPMKEY='105ef944' # Fedora 42 key
do_sign() {
# Sign with sigul unless FAKESIGN=1
Expand Down
Loading