build: add chocolatey package, remove legacy dist build scripts

The old manual dist/build/* scripts and dist/{deb,rpm}.sh are superseded by the
automated release workflow. Add the chocolatey package consumed by release.yml.
This commit is contained in:
Christian Visintin
2026-06-07 16:48:44 +02:00
parent cdd4c60805
commit 930e76814f
15 changed files with 91 additions and 493 deletions

11
dist/deb.sh vendored
View File

@@ -1,11 +0,0 @@
#!/bin/bash
echo "Installing cargo-deb..."
cargo install cargo-deb
if [ ! -f "Cargo.toml" ]; then
echo "Yout must be in the project root directory"
exit 1
fi
echo "Running cargo-deb"
cargo deb
exit $?