From 26d6e73e854391012309567d398b45f9493fbc12 Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Sat, 1 Oct 2022 13:19:32 +0200 Subject: feat: Moving away from docker to alpine package Add build and publish of the package tar. --- build.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 build.yml (limited to 'build.yml') diff --git a/build.yml b/build.yml new file mode 100644 index 0000000..14a8411 --- /dev/null +++ b/build.yml @@ -0,0 +1,28 @@ +# this build is meant to be submitted manually +image: alpine/latest +packages: + - python3-dev + - python3-setuptools_scm + - py3-poetry + +sources: + - https://git.sr.ht/~gabrielgio/reddit-nextcloud-importer + +secrets: + - 008c4f67-b864-47f8-9790-cd32f2ae8516 + +environment: + deploy: builds@gabrielgio.me + target: artifacts.gabrielgio.me/reddit-nextcloud-importer/ + version: v0.1.1 + +tasks: + - archive: | + cd reddit-nextcloud-importer + poetry build + + - deploy: | + cd reddit-nextcloud-importer/dist/ + sshopts="ssh -o StrictHostKeyChecking=no" + rsync --rsh="$sshopts" -rP *.tar.* $deploy:/var/www/$target + -- cgit v1.2.3