build: Add actions to automate release#1429
Merged
ckyrouac merged 1 commit intobootc-dev:mainfrom Jul 23, 2025
Merged
Conversation
Collaborator
|
Also thanks for working on this, very overdue! |
cgwalters
reviewed
Jul 22, 2025
| if: github.event_name != 'push' | ||
| uses: crazy-max/ghaction-import-gpg@v6 | ||
| with: | ||
| gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} |
Collaborator
There was a problem hiding this comment.
We need to make this keypair and add to secrets in this repo right?
And when we do that we'll also want to sign it via web of trust and/or just document the public key explicitly in the repo.
Collaborator
There was a problem hiding this comment.
@ckyrouac Did we ever do anything here? here's my proposal:
- Encrypt the release key using the ssh (or gpg as preferred) keys of all existing maintainers
- Commit that encrypted result to https://github.com/bootc-dev/infra (yes publicly... https://github.com/getsops/sops looks like maybe a good choice of tool)
- Move the secret to the org level
My goal here is to be able to reuse exactly the same release workflow (including signing) for bcvk.
This adds two github actions, "Create Release PR" and "release". The first is scheduled to run every 3 weeks to automatically create a release PR that bumps the versions. The "release" action is triggered when the release PR is merged. It will create a draft release with the tars attached. Assited-by: Claude Code Signed-off-by: ckyrouac <ckyrouac@redhat.com>
Collaborator
|
LGTM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds two github actions, "Create Release PR" and "release". The first is scheduled to run every 3 weeks to automatically create a release PR that bumps the versions. The "release" action is triggered when the release PR is merged. It will create a draft release with the tars attached.
Assited-by: Claude Code