bouquin/release.sh
Miguel Jacq ab0a9400c9
All checks were successful
CI / test (push) Successful in 4m42s
Lint / test (push) Successful in 30s
Trivy / test (push) Successful in 21s
Tweak README/release
2025-11-22 20:54:40 +11:00

17 lines
315 B
Bash
Executable file

#!/bin/bash
set -e
rm -rf dist
# Publish to Pypi
poetry build
poetry publish
# Make AppImage
sudo apt-get install libfuse-dev
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