Initial commit
Some checks failed
CI / test (push) Failing after 1m20s
Lint / test (push) Failing after 28s
Trivy / test (push) Successful in 23s

This commit is contained in:
Miguel Jacq 2026-01-02 09:59:52 +11:00
commit fe58397da7
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
17 changed files with 2547 additions and 0 deletions

17
release.sh Executable file
View file

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