Skip to content

Commit 11c6ee8

Browse files
committed
fix: update release workflow and README for new binary name
- Change PROJECT_NAME from cap_sync to capsync in release.yml - Update README download URLs to use capsync-* instead of cap_sync-*
1 parent 8946c31 commit 11c6ee8

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: write
99

1010
env:
11-
PROJECT_NAME: "cap_sync"
11+
PROJECT_NAME: "capsync"
1212

1313
jobs:
1414
build-and-release:

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ edition = "2024"
55
authors = ["pa1nark"]
66
description = "A simple tool to sync your AI coding skills across different tools."
77
license = "CC0-1.0"
8-
repository = "https://github.com/pixincreate/cap_sync"
9-
homepage = "https://github.com/pixincreate/cap_sync"
8+
repository = "https://github.com/pixincreate/CapSync"
9+
homepage = "https://github.com/pixincreate/CapSync"
1010
keywords = ["ai", "skills", "sync", "capabilities"]
1111
categories = ["command-line-utilities", "development-tools"]
1212
rust-version = "1.85"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,22 @@ Download a pre-built binary and use it directly:
2929

3030
**macOS (Apple Silicon):**
3131
```bash
32-
curl -L -o capsync https://github.com/pixincreate/cap_sync/releases/latest/download/cap_sync-darwin-aarch64
32+
curl -L -o capsync https://github.com/pixincreate/cap_sync/releases/latest/download/capsync-darwin-aarch64
3333
chmod +x capsync
3434
# Move to a directory in your PATH, or use directly:
3535
./capsync init
3636
```
3737

3838
**macOS (Intel):**
3939
```bash
40-
curl -L -o capsync https://github.com/pixincreate/cap_sync/releases/latest/download/cap_sync-darwin-x86_64
40+
curl -L -o capsync https://github.com/pixincreate/cap_sync/releases/latest/download/capsync-darwin-x86_64
4141
chmod +x capsync
4242
./capsync init
4343
```
4444

4545
**Linux:**
4646
```bash
47-
curl -L -o capsync https://github.com/pixincreate/cap_sync/releases/latest/download/cap_sync-linux-x86_64
47+
curl -L -o capsync https://github.com/pixincreate/cap_sync/releases/latest/download/capsync-linux-x86_64
4848
chmod +x capsync
4949
./capsync init
5050
```

0 commit comments

Comments
 (0)