midr @ dc81e33f760b45778f2646d6f1a7c9e8166b2fe5

ref: Move env var

Move enviroment variables to the build manifest.
 1diff --git a/Makefile b/Makefile
 2index 43e0f57892ac4bcdeafabde64fdb4d040360ef04..29f6fd9526beeda82f21317b8829e784b6749463 100644
 3--- a/Makefile
 4+++ b/Makefile
 5@@ -4,4 +4,4 @@ build:
 6 	go build -ldflags="-X 'main.Version=${VERSION}'"
 7 
 8 tar: build
 9-	XZ_OPT=-9 tar -cvf midr-${VERSION}.tar.xz midr templates/
10+	tar -cvf midr-${VERSION}.tar.xz midr templates/
11diff --git a/build.yml b/build.yml
12index 3bb5c8e8fa9f3943052ea36afe49a9519d5d5fbd..cb918cc5f830152e3b098bd56c8f8792cc8bf810 100644
13--- a/build.yml
14+++ b/build.yml
15@@ -1,5 +1,5 @@
16 # this build is meant to be submitted manually
17-image: fedora/36
18+image: alpine/latest
19 packages:
20   - rsync
21   - make
22@@ -14,13 +14,15 @@
23 environment:
24   deploy: builds@gabrielgio.me
25   target: artifacts.gabrielgio.me/midr
26+  GOPROXY: direct
27+  XZ_OPT: -9
28 
29 tasks:
30   - build: |
31       cd midr
32       make tar
33   - deploy: |
34-      cd jnfilter
35+      cd midr
36       sshopts="ssh -o StrictHostKeyChecking=no"
37       rsync --rsh="$sshopts" -rP *.tar.xz $deploy:/var/www/$target
38