Skip to content

Commit d7281b4

Browse files
committed
ci: zip release binaries with platform-specific archive names
1 parent 29e7188 commit d7281b4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
else
3434
cargo build --release --target ${{ matrix.target }}
3535
fi
36-
- name: Rename binary
37-
run: cp target/${{ matrix.target }}/release/async-bash-mcp ${{ matrix.artifact_name }}
36+
- name: Package binary
37+
run: zip ${{ matrix.artifact_name }}.zip -j target/${{ matrix.target }}/release/async-bash-mcp
3838
- name: Upload binary
3939
uses: softprops/action-gh-release@v1
4040
with:
41-
files: ${{ matrix.artifact_name }}
41+
files: ${{ matrix.artifact_name }}.zip

0 commit comments

Comments
 (0)