diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index fab3acdf..0201ba57 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -104,7 +104,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') with: version: latest - args: release --skip-validate --rm-dist --release-notes=CHANGELOG.md + args: release --skip-validate --clean --release-notes=CHANGELOG.md env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SCOOP_TOKEN: ${{ secrets.SCOOP_TOKEN }} diff --git a/.goreleaser.yml b/.goreleaser.yml index 6587f54a..ccc637dd 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -28,11 +28,8 @@ builds: - cp ".\target\x86_64-pc-windows-msvc\release\komorebic.exe" ".\dist\komorebic_windows_amd64_v1\komorebic.exe" archives: - - replacements: - windows: pc-windows-msvc - amd64: x86_64 + - name_template: "{{ .ProjectName }}-{{ .Version }}-x86_64-pc-windows-msvc" format: zip - name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Arch }}-{{ .Os }}" files: - LICENSE - CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index d1a4d0bb..a8d960db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -807,7 +807,7 @@ dependencies = [ [[package]] name = "komorebi" -version = "0.1.16" +version = "0.1.17" dependencies = [ "bitflags 2.3.3", "clap", @@ -845,7 +845,7 @@ dependencies = [ [[package]] name = "komorebi-core" -version = "0.1.16" +version = "0.1.17" dependencies = [ "clap", "color-eyre", @@ -859,7 +859,7 @@ dependencies = [ [[package]] name = "komorebic" -version = "0.1.16" +version = "0.1.17" dependencies = [ "clap", "color-eyre", diff --git a/komorebi-core/Cargo.toml b/komorebi-core/Cargo.toml index 6b76f8fb..1361077c 100644 --- a/komorebi-core/Cargo.toml +++ b/komorebi-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-core" -version = "0.1.16" +version = "0.1.17" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,4 +13,4 @@ serde_json = "1" serde_yaml = "0.9" strum = { version = "0.25", features = ["derive"] } schemars = "0.8" -windows = { workspace = true } \ No newline at end of file +windows = { workspace = true } diff --git a/komorebi/Cargo.toml b/komorebi/Cargo.toml index 8ae37388..ab3f891e 100644 --- a/komorebi/Cargo.toml +++ b/komorebi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi" -version = "0.1.16" +version = "0.1.17" authors = ["Jade Iqbal "] description = "A tiling window manager for Windows" categories = ["tiling-window-manager", "windows"] diff --git a/komorebic/Cargo.toml b/komorebic/Cargo.toml index b746fa20..f889746c 100644 --- a/komorebic/Cargo.toml +++ b/komorebic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebic" -version = "0.1.16" +version = "0.1.17" authors = ["Jade Iqbal "] description = "The command-line interface for Komorebi, a tiling window manager for Windows" categories = ["cli", "tiling-window-manager", "windows"] @@ -29,4 +29,4 @@ serde_yaml = "0.9" sysinfo = "0.29" uds_windows = "1" which = "4" -windows = { workspace = true } \ No newline at end of file +windows = { workspace = true }