Speed up release pipeline#319
Merged
johnstairs merged 1 commit intomainfrom May 6, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR splits tag-driven release work into a dedicated GitHub Actions workflow so release tags no longer execute the full CI/deploy/test pipeline, while adding a shared mechanism to enumerate the official artifacts that should exist after a release.
Changes:
- Added a new
Releaseworkflow forv*.*.*tags and removed tag handling frompr-ci. - Added
--only-list-artifactssupport to the image build script plus alist-official-artifactsMake target for release verification. - Switched GoReleaser changelog generation to GitHub-native release notes and updated touched setup actions.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
scripts/build-images.sh |
Adds artifact-listing mode for images/manifests/Helm chart without building or pushing. |
Makefile.cloud |
Skips ACR login when running artifact-list-only builds. |
Makefile |
Wires artifact-list mode into _docker-build, adds list-official-artifacts, and makes official publish flags explicit. |
cli/.goreleaser.yaml |
Changes changelog generation to GitHub-native release notes. |
.github/workflows/release.yml |
Adds the dedicated tag/manual release workflow and artifact availability check. |
.github/workflows/pr-ci.yml |
Removes tag-triggered release job and updates touched setup action versions. |
.github/workflows/delete-pr-environments.yml |
Updates the Go setup action version. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
naegelejd
approved these changes
May 6, 2026
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.
v*.*.*pushes no longer run the full CI/deploy/test workflow.--only-list-artifactsmode to the image build script and alist-official-artifactsMake target so release verification uses the same artifact list as official publishing instead of hard-coded image names.