diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-06-23 23:09:17 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-06-23 23:13:40 +0200 |
commit | a588d31babc97d8749cf531379c9c2e25d7225fa (patch) | |
tree | 3fc4b5261df6cd48655bb3a2fbd4d9257c4d6144 /.build.yml | |
parent | 4f3b7a9fbb951257a039a84cafcd9f897a6bc197 (diff) | |
download | gabrielgio.me-a588d31babc97d8749cf531379c9c2e25d7225fa.tar.gz gabrielgio.me-a588d31babc97d8749cf531379c9c2e25d7225fa.tar.bz2 gabrielgio.me-a588d31babc97d8749cf531379c9c2e25d7225fa.zip |
feat: Add openring feed
Add a nice way to suggest some feed I interested in.
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,7 +1,13 @@ image: alpine/latest packages: - rsync + - go - hugo + - make + +sources: + - https://git.sr.ht/~gabrielgio/gabrielgio.me + - https://git.sr.ht/~sircmpwn/openring secrets: - 008c4f67-b864-47f8-9790-cd32f2ae8516 @@ -10,9 +16,13 @@ environment: deploy: builds@gabrielgio.me tasks: + - openring: | + cd openring + go build -o openring + sudo cp openring /usr/local/bin/ - build: | cd gabrielgio.me - hugo + make - deploy: | cd gabrielgio.me sshopts="ssh -o StrictHostKeyChecking=no" |