chore(ci): rename publish-binary.yml to build-linux.yml #20
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "chore/rename-workflow-build-linux"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Renames
.forgejo/workflows/publish-binary.ymltobuild-linux.ymlto match the workflow naming convention used by sibling repos ina8n-run/. Binary-publishing repos consistently usebuild-<artifact>.yml:da-os/.forgejo/workflows/build-linux.ymlandbuild-windows.yml(closest match: also Rust, also publishes to the Generic Package registry).dmarc-reporter/.forgejo/workflows/build-backend.ymlandbuild-frontend.yml.The governance
CHECKLIST.mdonly spells outbuild-oci-image.ymlfor image-publishing repos, so for a Generic-Package-only binary likeytthe de facto convention from siblings is the right thing to mirror.What changed
.forgejo/workflows/publish-binary.yml->.forgejo/workflows/build-linux.yml.name: Publish binary->name: Build Linux binary; job idpublish->build-linux; job display nameBuild and publish yt binary->Build yt (Linux x86_64); self-referentialpaths:filter follows.CLAUDE.mdworkflow inventory updated.No CI behavior changes: artifact filename (
yt-linux-x86_64), Generic Package slug (youtrack-cli), registry URL, and other trigger paths are otherwise identical.Verification
cargo fmt --checkclean.cargo clippy --all-targets -- -D warningsclean.cargo test --all-targets: 160 tests pass.Test plan
src/**orCargo.tomltriggers the renamed workflow and publishesyt-linux-x86_64to the same URL as before.