diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7dc0584d0cb31ed87398a40f8fb812bd48191327..df66516e143a7021f69ea4ba7689d62464e143d0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -209,11 +209,13 @@ jobs:
                   CARGO_DEB_TARGET_TUPLE=$(echo ${{ matrix.target }} | grep -o -E '^([^-]*-){3}[^-]*')
 
                   bin/nix-build-and-cache just .#static-${{ matrix.target }}
-                  mkdir -p target/release/${{ matrix.target }}
-                  cp -v -f result/bin/conduit target/release/${{ matrix.target }}
-                  direnv exec . cargo deb --verbose --no-build --no-strip --target=$CARGO_DEB_TARGET_TUPLE --output target/release/${{ matrix.target }}/${{ matrix.target }}.deb
-                  mv -v target/release/${{ matrix.target }}/conduit static-${{ matrix.target }}
-                  mv -v target/release/${{ matrix.target }}/${{ matrix.target }}.deb ${{ matrix.target }}.deb
+                  mkdir -v -p target/release/
+                  mkdir -v -p target/$CARGO_DEB_TARGET_TUPLE/release/
+                  cp -v -f result/bin/conduit target/release/conduwuit
+                  cp -v -f result/bin/conduit target/$CARGO_DEB_TARGET_TUPLE/release/conduwuit
+                  direnv exec . cargo deb --verbose --no-build --no-strip --target=$CARGO_DEB_TARGET_TUPLE --output target/release/${{ matrix.target }}.deb
+                  mv -v target/release/conduwuit static-${{ matrix.target }}
+                  mv -v target/release/${{ matrix.target }}.deb ${{ matrix.target }}.deb
 
             - name: Upload static-${{ matrix.target }}
               uses: actions/upload-artifact@v4
@@ -228,6 +230,7 @@ jobs:
                   name: deb-${{ matrix.target }}
                   path: ${{ matrix.target }}.deb
                   if-no-files-found: error
+                  compression-level: 0
 
             - name: Build OCI image ${{ matrix.target }}
               run: |
diff --git a/Cargo.toml b/Cargo.toml
index 9ca75672ba82fd61ee57916f82f0b429b9e11b84..9a4f40fd6ca3bdad54a5c44d7fb684fa650840b7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -448,7 +448,7 @@ assets = [
         "644",
     ],
     [
-        "target/release/conduit",
+        "target/release/conduwuit",
         "usr/sbin/conduwuit",
         "755",
     ],