gabrielgio.me @ a1df6513ecf317d937f7b5d76f73e2f4e3edd542

chore: Remove unnecessary step

Since `openring` is now present on 3.18 repo I can remove its
installation stop.
diff --git a/.build.yml b/.build.yml
index 90017159d46fc3052cc5b3641f7a7c820344de03..fbf62265ff8b0c3e89bbea657c4a820a745fadd1 100644
--- a/.build.yml
+++ b/.build.yml
@@ -1,13 +1,11 @@
 image: alpine/latest
 packages:
   - rsync
-  - go
   - hugo
-  - make
+  - openring
 
 sources:
   - https://git.sr.ht/~gabrielgio/gabrielgio.me
-  - https://git.sr.ht/~sircmpwn/openring
 
 secrets:
   - 008c4f67-b864-47f8-9790-cd32f2ae8516
@@ -17,10 +15,6 @@ environment:
   deploy: builds@gabrielgio.me
 
 tasks:
-  - openring: |
-      cd openring
-      go build -o openring
-      sudo cp openring /usr/local/bin/
   - build: |
       cd gabrielgio.me
       make
@@ -28,5 +22,3 @@   - deploy: |
       cd gabrielgio.me
       sshopts="ssh -o StrictHostKeyChecking=no"
       rsync --rsh="$sshopts" -rP public/* $deploy:/var/www/gabrielgio.me/
-
-