bouquin/release.sh
2025-11-12 10:00:21 +11:00

16 lines
282 B
Bash
Executable file

#!/bin/bash
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