From 0b7503a8cd4f9ba6ce45769a5e25eb05b98129c2 Mon Sep 17 00:00:00 2001 From: Michelle Tilley Date: Thu, 23 Apr 2026 20:40:12 -0700 Subject: Tweak release skill --- .atuin/skills/release/SKILL.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.atuin/skills/release/SKILL.md b/.atuin/skills/release/SKILL.md index e0172476..818f0e60 100644 --- a/.atuin/skills/release/SKILL.md +++ b/.atuin/skills/release/SKILL.md @@ -28,6 +28,8 @@ Verify these tools are installed: `git`, `gsed`, `cargo`, `gh`, `git-cliff`. Use `command -v` for each. If any are missing, report which ones and stop. +Remember to use `gsed`, or else macOS flags to regular `sed`, later in the workflow. + --- ## Step 2 — Determine Version @@ -78,8 +80,9 @@ ALL subsequent Bash commands run from `$WORKDIR`. 4. Show `git diff --stat` and the version-related lines from the diff: ```bash - git diff --unified=0 -- '*.toml' | grep -E '^\+.*version' | grep -v '^\+\+\+' + git diff --unified=0 -- '*.toml' | grep '^\+.*version' | grep -vF '+++' ``` + Remember to use macOS grep arguments on macOS systems. 5. Verify the workspace version was actually updated by re-reading it from `Cargo.toml`. -- cgit v1.3.1