diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1db179f..4f75266 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,6 +18,10 @@ jobs: os: ubuntu-latest artifact_name: target/release/ asset_name: -linux + - name: windows + os: windows-latest + artifact_name: target/release/.exe + asset_name: -windows - name: macos os: macos-latest artifact_name: target/release/ diff --git a/Cargo.toml b/Cargo.toml index a0b72bf..b44a509 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "term-sesh" -version = "0.1.4" +version = "0.1.5" edition = "2021" authors = ["Will Hopkins "] license = "MIT" @@ -34,7 +34,7 @@ once_cell = "1.17.1" log = "0.4.17" env_logger = "0.10.0" dialoguer = { version = "0.10.4", features = ["completion", "history", "fuzzy-select"] } -sesh-shared = { path = "./shared", version = "0.1.2" } +sesh-shared = { path = "./shared", version = "0.1.3" } sesh-proto = { path = "./proto", version = "0.1.1" } sesh-cli = { path = "./cli", version = "0.1.1" } diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 6e0261a..a735556 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sesh-shared" -version = "0.1.2" +version = "0.1.3" edition = "2021" authors = ["Will Hopkins "] license = "MIT"