aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-07-11 15:09:05 +0100
committerdiogo464 <[email protected]>2025-07-11 15:09:05 +0100
commita99af8dc92e33c7db358b38a4b5135442b4ecac1 (patch)
treeb297fb5b6baee09d45813f909fa501d39cd43039
parentbfc3d24c1c3f0114d07e01afb38c840df046d1b8 (diff)
docs: update release command to push to all remotes
-rw-r--r--.claude/commands/release.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/.claude/commands/release.md b/.claude/commands/release.md
index 3a25e6e..a1ec500 100644
--- a/.claude/commands/release.md
+++ b/.claude/commands/release.md
@@ -10,7 +10,8 @@ Steps:
102. Update the version in Cargo.toml from its current value to {{version}} (without the 'v' prefix) 102. Update the version in Cargo.toml from its current value to {{version}} (without the 'v' prefix)
113. Commit the version change with message: "chore: bump version to {{version}}" 113. Commit the version change with message: "chore: bump version to {{version}}"
124. Create an annotated git tag with: git tag -a v{{version}} -m "Release v{{version}}" 124. Create an annotated git tag with: git tag -a v{{version}} -m "Release v{{version}}"
135. Push the commits and tag to GitHub: git push origin main --follow-tags 135. Check available remotes with: git remote -v
146. Push the commits and tag to all remotes (e.g., if you have both 'origin' and 'github', push to both)
14 15
15This will trigger the GitHub Actions workflow that automatically builds and releases the binaries. 16This will trigger the GitHub Actions workflow that automatically builds and releases the binaries.
16 17