Skip to content

Commit 1d0db78

Browse files
madeyeclaude
andcommitted
Rename binary from https-proxy to https_proxy
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 69137e3 commit 1d0db78

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.claude/skills/github-release/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ Build a Linux amd64 release binary and upload it to the GitHub release page for
2626

2727
3. **Verify the binary**:
2828
```
29-
file target/x86_64-unknown-linux-musl/release/https-proxy
29+
file target/x86_64-unknown-linux-musl/release/https_proxy
3030
```
3131
Expect: `ELF 64-bit LSB executable, x86-64, statically linked, stripped`
3232

3333
4. **Zip the binary**:
3434
```
3535
cd target/x86_64-unknown-linux-musl/release
36-
zip https_proxy-$ARGUMENTS-linux-amd64.zip https-proxy
36+
zip https_proxy-$ARGUMENTS-linux-amd64.zip https_proxy
3737
```
3838

3939
5. **Upload to the release** (replace existing asset if present):
@@ -48,7 +48,7 @@ Build a Linux amd64 release binary and upload it to the GitHub release page for
4848

4949
## Notes
5050

51-
- The binary name is `https-proxy` (with hyphen), per `[[bin]]` in Cargo.toml.
51+
- The binary name is `https_proxy` (with underscore), per `[[bin]]` in Cargo.toml.
5252
- The zip asset name uses underscore: `https_proxy-<tag>-linux-amd64.zip`.
5353
- Uses musl for a fully static binary — no glibc dependency on the target host.
5454
- The `--clobber` flag replaces any existing asset with the same name.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ jobs:
8080
- uses: actions/upload-artifact@v4
8181
with:
8282
name: https_proxy-${{ matrix.target }}
83-
path: target/${{ matrix.target }}/release/https-proxy
83+
path: target/${{ matrix.target }}/release/https_proxy

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name = "https_proxy"
1313
path = "src/lib.rs"
1414

1515
[[bin]]
16-
name = "https-proxy"
16+
name = "https_proxy"
1717
path = "src/main.rs"
1818

1919
[dependencies]

0 commit comments

Comments
 (0)