cd: automated release notes, binaries and man pages#21
Merged
Conversation
Adds tools/gen-man and a Makefile with and targets. man/ is gitignored — generated at install time or in CI.
There was a problem hiding this comment.
1 issue found across 11 files
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name=".github/workflows/release-please.yml">
<violation number="1" location=".github/workflows/release-please.yml:15">
P1: Release Please uses default `GITHUB_TOKEN`, which won't trigger the goreleaser workflow on tag pushes. Add a PAT or GitHub App token so the tag events fire downstream workflows.</violation>
</file>
Reply with feedback, questions, or to request a fix.
Re-trigger cubic
| release-please: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: googleapis/release-please-action@a02a34c4d625b9a4a434bd058532d5edecb6c70b # v4 |
There was a problem hiding this comment.
P1: Release Please uses default GITHUB_TOKEN, which won't trigger the goreleaser workflow on tag pushes. Add a PAT or GitHub App token so the tag events fire downstream workflows.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/release-please.yml, line 15:
<comment>Release Please uses default `GITHUB_TOKEN`, which won't trigger the goreleaser workflow on tag pushes. Add a PAT or GitHub App token so the tag events fire downstream workflows.</comment>
<file context>
@@ -0,0 +1,18 @@
+ release-please:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: googleapis/release-please-action@a02a34c4d625b9a4a434bd058532d5edecb6c70b # v4
+ with:
+ config-file: release-please-config.json
</file context>
- automatic release notes + tag generation - automatic binary and .deb creation
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.
Summary by cubic
Automates releases and packaging with
release-pleaseandgoreleaser, and adds man page generation for theissuesCLI. Ships cross-platform binaries, a.deb, and man pages.cobra/doc; addedtools/gen-man,make man, andmake install-man(outputs toman/, gitignored;MANDIRdefaults to/usr/local/share/man/man1); exposedcmd.Root()to enable docs.release-pleaseonmainopens release PRs and tags;goreleaseron tags builds Linux/macOS/Windows (amd64/arm64; Windows amd64 only), publishes archives, checksums, and a Debian package.Written for commit 9994d3e. Summary will update on new commits.