Add AppImage

This commit is contained in:
Miguel Jacq 2025-11-12 10:00:21 +11:00
parent 43c31a1d97
commit 37332b5618
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
5 changed files with 240 additions and 1 deletions

View file

@ -4,7 +4,13 @@ set -e
rm -rf dist
# Publish to Pypi
poetry build
poetry publish
# Make AppImage
poetry run pyproject-appimage
mv Bouquin.AppImage dist/
# Sign packages
for file in `ls -1 dist/`; do qubes-gpg-client --batch --armor --detach-sign dist/$file > dist/$file.asc; done