diff options
author | Adam Stück <adam@adast.dk> | 2023-05-22 17:32:51 +0200 |
---|---|---|
committer | Adam Stück <adam@adast.dk> | 2023-05-22 18:17:57 +0200 |
commit | 2be60d932f1e08c17526a996bf1663f006b433e4 (patch) | |
tree | f5df8e6ae74d7e8315a4b0d0453d35ea5f272107 | |
parent | 775e69fea981b1cec03cc8206d69abed9b824df5 (diff) |
Add build manifest
-rw-r--r-- | .build.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..b10cd57 --- /dev/null +++ b/.build.yml @@ -0,0 +1,14 @@ +image: alpine/edge +oauth: pages.sr.ht/PAGES:RW +packages: +- hut +- lowdown +environment: + site: adast.dk +tasks: +- package: | + cd adast.xyz + ./ssg src/ build/ $site https://$site + tar -C build -cvz . > ../site.tar.gz +- upload: | + hut pages publish -d $site site.tar.gz |