diff --git a/.build.yml b/.build.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d58a4e66f1c467d6633f25f01c3e76b273c7826a
--- /dev/null
+++ b/.build.yml
@@ -0,0 +1,21 @@
+image: alpine/latest
+packages:
+ - rsync
+ - hugo
+
+secrets:
+ - 008c4f67-b864-47f8-9790-cd32f2ae8516
+
+environment:
+ deploy: builds@gabrielgio.me
+
+tasks:
+ - build: |
+ cd gabrielgio.me
+ hugo
+ - deploy: |
+ cd gabrielgio.me
+ sshopts="ssh -o StrictHostKeyChecking=no"
+ rsync --rsh="$sshopts" -rP public/* $deploy:/var/www/gabrielgio.me/
+
+
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 3076f29ddcd83b931c4528262a758f84d2f1347b..0000000000000000000000000000000000000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-# This file is a template, and might need editing before it works on your project.
----
-# All available Hugo versions are listed here:
-# https://gitlab.com/pages/hugo/container_registry
-image: registry.gitlab.com/pages/hugo:latest
-
-variables:
- GIT_SUBMODULE_STRATEGY: recursive
- GIT_STRATEGY: clone
-
-test:
- script:
- - hugo --minify
- except:
- - master
-
-pages:
- script:
- - hugo
- artifacts:
- paths:
- - public
- only:
- - master
diff --git a/.hugo_build.lock b/.hugo_build.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
Binary files /dev/null and b/.hugo_build.lock differ