diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-07-20 18:51:38 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-07-20 18:53:19 +0200 |
commit | a1df6513ecf317d937f7b5d76f73e2f4e3edd542 (patch) | |
tree | ba0df1458e49a084c81870e0704ed3cb63e05bac /.build.yml | |
parent | c037259bc45446b2a7911a5abc3b930eea8c560b (diff) | |
download | gabrielgio.me-a1df6513ecf317d937f7b5d76f73e2f4e3edd542.tar.gz gabrielgio.me-a1df6513ecf317d937f7b5d76f73e2f4e3edd542.tar.bz2 gabrielgio.me-a1df6513ecf317d937f7b5d76f73e2f4e3edd542.zip |
chore: Remove unnecessary step
Since `openring` is now present on 3.18 repo I can remove its
installation stop.
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -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 @@ tasks: cd gabrielgio.me sshopts="ssh -o StrictHostKeyChecking=no" rsync --rsh="$sshopts" -rP public/* $deploy:/var/www/gabrielgio.me/ - - |