mirror of
https://github.com/chatmail/relay.git
synced 2026-06-13 15:11:06 +00:00
1d7ebfa7a5
Only sdists are used for deployment.
11 lines
290 B
Bash
Executable File
11 lines
290 B
Bash
Executable File
#!/usr/bin/env bash
|
|
: ${CHATMAIL_DOMAIN:=c1.testrun.org}
|
|
export CHATMAIL_DOMAIN
|
|
|
|
venv/bin/python3 -m build --sdist doveauth --outdir dist
|
|
venv/bin/python3 -m build --sdist filtermail --outdir dist
|
|
|
|
chatmail-pyinfra/venv/bin/pyinfra --ssh-user root "$CHATMAIL_DOMAIN" deploy.py
|
|
|
|
rm -r dist/
|