aboutsummaryrefslogtreecommitdiff
path: root/build.yml
diff options
context:
space:
mode:
Diffstat (limited to 'build.yml')
-rw-r--r--build.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/build.yml b/build.yml
new file mode 100644
index 0000000..3bb5c8e
--- /dev/null
+++ b/build.yml
@@ -0,0 +1,27 @@
+# this build is meant to be submitted manually
+image: fedora/36
+packages:
+ - rsync
+ - make
+ - go
+
+sources:
+ - https://git.sr.ht/~gabrielgio/midr
+
+secrets:
+ - 008c4f67-b864-47f8-9790-cd32f2ae8516
+
+environment:
+ deploy: builds@gabrielgio.me
+ target: artifacts.gabrielgio.me/midr
+
+tasks:
+ - build: |
+ cd midr
+ make tar
+ - deploy: |
+ cd jnfilter
+ sshopts="ssh -o StrictHostKeyChecking=no"
+ rsync --rsh="$sshopts" -rP *.tar.xz $deploy:/var/www/$target
+
+