[codex] sbom-diff-and-risk v0.4 release hardening#11
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 1eba53c798
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
|
||
| title="${RELEASE_TITLE_PREFIX} ${RELEASE_TAG}" | ||
|
|
||
| if gh release view "${RELEASE_TAG}" >/dev/null 2>&1; then |
There was a problem hiding this comment.
Provide repo context before running gh release commands
In publish-release-assets, the step invokes gh release view/create/upload/edit but never checks out the repo and does not pass --repo (or set GH_REPO), so these commands can fail to resolve a target repository in GitHub Actions and abort tag-release publication. GitHub CLI documents GH_REPO as required for commands that otherwise rely on local-repo context; without checkout in this job, tag pushes can fail before assets are uploaded.
Useful? React with 👍 / 👎.
Summary
Local validation
Notes