7 lines
154 B
Bash
7 lines
154 B
Bash
|
|
#!/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
|