ci: Split release preparation and publishing - #539
Merged
karthikbekalp merged 1 commit intoSep 1, 2026
Merged
Conversation
karthikbekalp
force-pushed
the
test/release-readiness-smoke
branch
from
August 31, 2026 22:24
d547c51 to
b07b13f
Compare
karthikbekalp
marked this pull request as draft
August 31, 2026 22:25
karthikbekalp
force-pushed
the
test/release-readiness-smoke
branch
from
September 1, 2026 18:44
b07b13f to
8316cb0
Compare
karthikbekalp
marked this pull request as ready for review
September 1, 2026 18:50
Signed-off-by: Karthik Bekal Pattathana <133984042+karthikbekalp@users.noreply.github.com>
karthikbekalp
force-pushed
the
test/release-readiness-smoke
branch
from
September 1, 2026 19:13
8316cb0 to
ef42708
Compare
karthikbekalp
enabled auto-merge (squash)
September 1, 2026 19:14
andychoquette
approved these changes
Sep 1, 2026
karthikbekalp
disabled auto-merge
September 1, 2026 23:06
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.
What was the problem/requirement? (What/Why)
The release workflow waited for asynchronous Conda production promotion and required a manual approval before completing public publication. This required maintainer coordination and left a long gap between preparation and release completion.
What was the solution? (How)
Split publication into two workflows:
Release: Preparecreates or validates the tag, runs unit and xa11y integration tests, builds and stages installers, and publishes the Python package to CodeArtifact.mainline.Release: Publishruns every six hours or on demand and checks the public Conda manifest for the exactcinema4d-openjdversion onlinux-64andwin-64.release-gateenvironment.What is the impact of this change?
Release completion becomes unattended once the package reaches the public Conda manifest. The previous manual readiness gate is removed because production-wave completion is represented by the manifest and required manual coverage has been replaced by xa11y integration tests.
Normal release preparation and artifact publication remain serialized through the shared
releaseconcurrency group.How was this change tested?
Release: Publishin readiness-only mode to verify a ready release, pending release, approved override, and expected timeout failure. The timeout harness captured and asserted the action's failure, so the test run itself completed successfully; the production workflow does not suppress that failure. Publication jobs were skipped during these checks.Was this change documented?
The release automation design guide was updated to document the latest-release-only publication policy.
Is this a breaking change?
No. This changes internal release automation and does not modify the submitter or adaptor interfaces.