Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 5 additions & 4 deletions .claude/skills/release/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,15 @@ This project uses [release-plz](https://release-plz.dev/) for automated releases
```
- Or manually note the missing items for the user

5. **If changelog is correct**: Merge the PR
5. **Dry run before merging**
```bash
gh pr merge <PR_NUMBER> --merge
cargo publish -p s2-cli --dry-run
cargo publish -p s2-lite --dry-run
```

6. **Monitor the release**
6. **If changelog is correct**: Merge the PR
```bash
gh run list --workflow=release.yml --limit=1
gh pr merge <PR_NUMBER> --squash
```

## If no release PR exists
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,12 +229,12 @@ jobs:
- name: Upload to release
uses: softprops/action-gh-release@v2
with:
tag_name: v${{ steps.version.outputs.value }}
tag_name: s2-cli-v${{ steps.version.outputs.value }}
files: |
**/*.zip

update_homebrew:
needs: build_binaries
needs: upload_release_artifacts
runs-on: ubuntu-22.04
steps:
- name: Checkout
Expand Down