An HTML-only Bluesky frontend

go back to manual build

+7 -1
+7 -1
.build.yml
··· 1 image: alpine/latest 2 packages: 3 - unzip 4 sources: 5 - - https://git.sr.ht/~jordanreger/htmlsky#ts 6 environment: 7 DENO_INSTALL: /home/build/.deno 8 PATH: $DENO_INSTALL/bin:$PATH 9 tasks: 10 - install-deno: | 11 curl -fsSL https://deno.land/x/install/install.sh | sh 12 - install-deployctl: | 13 deno install -Arf jsr:@deno/deployctl 14 - deploy: | 15 deployctl deploy
··· 1 image: alpine/latest 2 packages: 3 - unzip 4 + - git 5 sources: 6 + - https://git.sr.ht/~jordanreger/htmlsky 7 environment: 8 DENO_INSTALL: /home/build/.deno 9 PATH: $DENO_INSTALL/bin:$PATH 10 tasks: 11 + - checkout-ts: | 12 + cd htmlsky 13 + git checkout -q ts 14 + git submodule update --init --recursive 15 - install-deno: | 16 curl -fsSL https://deno.land/x/install/install.sh | sh 17 - install-deployctl: | 18 deno install -Arf jsr:@deno/deployctl 19 - deploy: | 20 + cd htmlsky 21 deployctl deploy