From 11edbba1ae055112aebb76d3939d8a675f9d9b4e Mon Sep 17 00:00:00 2001 From: alemi Date: Fri, 21 Jun 2024 02:21:27 +0200 Subject: [PATCH] ci: update tci script for new instance --- .tci | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.tci b/.tci index e1daa98..c018bc3 100755 --- a/.tci +++ b/.tci @@ -1,19 +1,19 @@ #!/bin/bash echo "building release binary" -cargo build --release --all-features +cargo build --release --all-features -j 2 echo "stopping service" systemctl --user stop upub echo "installing new binary" cp ./target/release/upub /opt/bin/upub echo "migrating database" -/opt/bin/upub -c /srv/tci/upub.toml --domain https://upub.alemi.dev migrate +/opt/bin/upub -c /etc/upub/config.toml migrate echo "restarting service" systemctl --user start upub echo "rebuilding frontend" cd web -/opt/bin/trunk build --release --public-url 'https://upub.alemi.dev/web' +CARGO_BUILD_JOBS=2 /opt/bin/trunk build --release --public-url 'https://dev.upub.social/web' echo "deploying frontend" -rm /srv/http/upub/web/* -mv ./dist/* /srv/http/upub/web/ +rm /srv/http/upub/dev/* +mv ./dist/* /srv/http/upub/dev/ echo "done"