From 69ca7300396be2236ae0481c8762bb6471502fe5 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 4 Oct 2023 18:15:41 -0400 Subject: [PATCH] Add upload tarball to the CI --- .build.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.build.yml b/.build.yml index dd3dc49..daab246 100644 --- a/.build.yml +++ b/.build.yml @@ -1,9 +1,20 @@ image: archlinux packages: - reuse + - rsync sources: - https://git.sr.ht/~redstrate/novus +secrets: + - b748582a-5d31-4fe8-94d6-4a63035e97aa tasks: - reuse: | cd novus - reuse lint \ No newline at end of file + reuse lint + - tarball: | + cd novus + ./scripts/tarball.sh + - upload-tarball: | + echo "StrictHostKeyChecking=no" >> ~/.ssh/config + rsync -e 'ssh -p 38901' -Wvr novus-source.tar.gz deploy@ryne.moe:/srv/http/astra-distrib/novus/git/ +artifacts: + - novus-source.tar.gz \ No newline at end of file