Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 18 additions & 17 deletions .claude/skills/create-release/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,29 @@ Create a new GitHub release for Insomnia with the correct versioning.
```
3. Bump the minor version (e.g., v0.2 → v0.3). Never use a patch number in the tag.
4. Create the release:
```bash
gh release create v{major}.{minor} \
--repo gordonbeeming/insomnia \
--target main \
--title "v{major}.{minor} — {short description}" \
--notes "$(cat <<'EOF'
# Insomnia v{major}.{minor} — {short description}

## What's New
````bash
gh release create v{major}.{minor} \
--repo gordonbeeming/insomnia \
--target main \
--title "v{major}.{minor} — {short description}" \
--notes "$(cat <<'EOF'
# Insomnia v{major}.{minor} — {short description}

- {list changes since last release using git log}
## What's New

## Install
- {list changes since last release using git log}

```bash
brew upgrade --cask gordonbeeming/tap/insomnia
```
## Install

Or download the DMG and CLI binary from the assets below.
EOF
)"
```
```bash
brew upgrade --cask gordonbeeming/tap/insomnia
```

Or download the DMG and CLI binary from the assets below.
EOF
)"
Comment thread
GordonBeeming marked this conversation as resolved.
````
5. The release pipeline will automatically:
- Build + test
- Sign with Developer ID
Expand Down
Loading