From ae607f3e558e8070f84dacd8f29aff3f7e47d813 Mon Sep 17 00:00:00 2001 From: oppiliappan Date: Wed, 1 Jul 2026 08:47:04 +0100 Subject: [PATCH] ci: deploy docs Signed-off-by: oppiliappan --- .tangled/workflows/deploy-docs.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .tangled/workflows/deploy-docs.yml diff --git a/.tangled/workflows/deploy-docs.yml b/.tangled/workflows/deploy-docs.yml new file mode 100644 index 00000000..b6374185 --- /dev/null +++ b/.tangled/workflows/deploy-docs.yml @@ -0,0 +1,21 @@ +when: + - event: push + branch: master + paths: + - docs/** + - input.css + +engine: microvm +image: nixos + +dependencies: + - nodejs + +steps: + - name: build docs + command: | + nix build .#docs + + - name: deploy + command: | + npx --yes wrangler pages deploy --branch master --project-name tangled-docs ./result/ -- 2.51.2