Principle:Wandb Weave Release Push
Appearance
| Knowledge Sources | |
|---|---|
| Domains | Release_Engineering, Git |
| Last Updated | 2026-02-14 00:00 GMT |
Overview
A source control synchronization step that pushes release commits and tags to the remote repository.
Description
Release Push pushes the two local commits (release bump and dev bump) plus the release tag to the remote repository. This makes the release version available for CI/CD pipelines, other developers, and automated build processes.
Usage
Run this after both version bumps are complete and before building the distribution.
Theoretical Basis
Standard git workflow:
- Push commits: git push sends the release and dev bump commits.
- Push tags: git push --tags sends the version tag (vX.Y.Z).
- Both operations should succeed atomically for a consistent remote state.
Related Pages
Implemented By
Page Connections
Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment