Merged
Conversation
PyPI Trusted Publishing 제약을 피할 수 있도록 릴리스 빌드와 배포, GitHub Release 생성을 하나의 top-level 워크플로로 정리한다. Made-with: Cursor
sjquant
approved these changes
Apr 16, 2026
장애 복구나 재시도를 위해 단일 릴리스 워크플로를 workflow_dispatch로도 실행할 수 있게 한다. Made-with: Cursor
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.
요약
polars릴리스 파이프라인을 단일 top-level workflow로 재구성합니다.Polars Auto Release워크플로는 제거하고,Polars Release하나에서 버전 확인, 아티팩트 빌드, PyPI 배포, GitHub Release 생성을 순차적으로 수행하도록 정리합니다.polars/README.md의 릴리스 절차도 새 배포 순서에 맞게 갱신합니다.변경 사항
polars/Cargo.toml버전 변경이main에 머지되면Polars Release가 실행됩니다.polars-vX.Y.ZGitHub Release를 생성하도록 순서를 조정했습니다.워크플로우 다이어그램
flowchart TD versionBump["Update version in Cargo.toml"] --> mergeMain["Merge to main"] mergeMain --> prepare["Check release tag and existing GitHub Release"] prepare --> buildArtifacts["Build wheels and sdist"] buildArtifacts --> publishPyPI["Publish artifacts to PyPI"] publishPyPI --> createRelease["Create GitHub Release polars-vX.Y.Z"]테스트 계획
ruby -e 'require "yaml"; YAML.load_file(".github/workflows/polars-release.yml")'Polars Release실제 실행 확인Made with Cursor