hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 920a4b8795b40fb206c04d7d99e525d5d1ccd1ba
parent 213c674eda4fbae33b215a02bf416d05786f731c
Author: Ember Sawady <ecs@d2evs.net>
Date:   Tue,  3 Oct 2023 11:10:07 +0000

run make docs/html on patch ci

and only skip the upload

Signed-off-by: Ember Sawady <ecs@d2evs.net>

Diffstat:
M.builds/alpine.yml | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.builds/alpine.yml b/.builds/alpine.yml @@ -50,12 +50,12 @@ tasks: exit 1 fi - docs: | + cd hare + make docs/html + tar -C docs/html -cvz . > docs.tar.gz if [ $BUILD_SUBMITTER != "git.sr.ht" ] then - echo "Skipping docs for non-git.sr.ht build" + echo "Not uploading docs for non-git.sr.ht build" exit fi - cd hare - make docs/html - tar -C docs/html -cvz . > docs.tar.gz acurl -f https://pages.sr.ht/publish/docs.harelang.org -Fcontent=@docs.tar.gz