Initial commit

This commit is contained in:
Miguel Jacq 2025-11-25 15:44:12 +11:00
commit 944f1e8691
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
14 changed files with 4598 additions and 0 deletions

16
release.sh Executable file
View file

@ -0,0 +1,16 @@
#!/bin/bash
set -eo pipefail
rm -rf dist
# Publish to Pypi
poetry build
poetry publish
# Make AppImage
poetry run pyproject-appimage
mv JinjaTurtle.AppImage dist/
# Sign packages
for file in `ls -1 dist/`; do qubes-gpg-client --batch --armor --detach-sign dist/$file > dist/$file.asc; done