Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,25 +127,25 @@ jobs:
runner: windows-latest
target: x86_64-pc-windows-msvc
binary: ziro.exe
asset: ziro-windows-x86_64.zip
asset: windows-x64.zip
- name: Linux x64
os: linux
runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
binary: ziro
asset: ziro-linux-x86_64.zip
asset: linux-x64.zip
- name: Linux ARM64
os: linux
runner: ubuntu-latest
target: aarch64-unknown-linux-gnu
binary: ziro
asset: ziro-linux-aarch64.zip
asset: linux-aarch64.zip
- name: macOS ARM64
os: macos
runner: macos-latest
target: aarch64-apple-darwin
binary: ziro
asset: ziro-macos-aarch64.zip
asset: macos-aarch64.zip
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.88.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ziro"
version = "0.0.24"
version = "0.0.26"
edition = "2024"
authors = ["huangshan"]
description = "Cross-platform port management tool - quickly find and kill processes occupying ports"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ithinku/ziro",
"version": "0.0.24",
"version": "0.0.26",
"description": "跨平台端口管理工具 - 快速查找和终止占用端口的进程",
"main": "bin/ziro.js",
"bin": {
Expand Down
Loading