6 lines
154 B
Bash
Executable file
6 lines
154 B
Bash
Executable file
#!/bin/bash
|
|
|
|
poetry build
|
|
poetry publish
|
|
|
|
for file in `ls -1 dist/`; do qubes-gpg-client --batch --armor --detach-sign dist/$file > dist/$file.asc; done
|