diff --git a/.gitignore b/.gitignore index 214e80f..afa6dd8 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,9 @@ # nix result result-* -dist/ + +# Packaging build output. Keep the release artifacts (AppImage/.deb) tracked +# so they are downloadable from the remote, but ignore intermediates. +dist/* +!dist/*.AppImage +!dist/*.deb diff --git a/README.md b/README.md index 83b142d..ba171eb 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,11 @@ systemd unit that runs the headless CLI with its own config. ## Packaging -Three distribution formats are provided: +Three distribution formats are provided. Prebuilt artifacts are tracked in +the repo under `dist/` and downloadable from the remote: + +- [AppImage](http://homeserver:3050/pedley/TeleportFling/raw/branch/main/dist/TeleportFling-0.1.0-x86_64.AppImage) +- [Debian/Ubuntu .deb](http://homeserver:3050/pedley/TeleportFling/raw/branch/main/dist/teleportfling_0.1.0_amd64.deb) ### Nix / NixOS diff --git a/dist/TeleportFling-0.1.0-x86_64.AppImage b/dist/TeleportFling-0.1.0-x86_64.AppImage new file mode 100755 index 0000000..902b58e Binary files /dev/null and b/dist/TeleportFling-0.1.0-x86_64.AppImage differ diff --git a/dist/teleportfling_0.1.0_amd64.deb b/dist/teleportfling_0.1.0_amd64.deb new file mode 100644 index 0000000..4154785 Binary files /dev/null and b/dist/teleportfling_0.1.0_amd64.deb differ