diff options
author | EuAndreh <eu@euandre.org> | 2018-12-21 14:58:23 -0200 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-12-21 14:58:23 -0200 |
commit | bddc78bc01ef374707c5b508d50d18f275e1bd26 (patch) | |
tree | efe3a9777b659db288cfca5df8470cb2f1076a90 | |
parent | Add Makefile for building and publishing website. (diff) | |
download | euandre.org-bddc78bc01ef374707c5b508d50d18f275e1bd26.tar.gz euandre.org-bddc78bc01ef374707c5b508d50d18f275e1bd26.tar.xz |
Add .build.yml file to build and publish website.
-rw-r--r-- | .build.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..712fbbf --- /dev/null +++ b/.build.yml @@ -0,0 +1,16 @@ +image: debian/stretch +triggers: + - condition: failure + action: email + to: EuAndreh <eu@euandre.org> +sources: + - https://git.sr.ht/~euandreh/website +secrets: + - 7159f943-811f-402d-bb6d-37cd764dc728 +tasks: + - build: | + cd website/ + make build + - publish: | + cd website/ + make publish |