Zig bindings for the notmuch C library
0

Configure Feed

Select the types of activity you want to include in your feed.

add tangled workflow to publish docs site

Jeffrey C. Ollie (May 19, 2026, 6:12 PM -0500) 292cca45 66eb62e5

Waiting for spindle ...
+37
+37
.tangled/workflows/publish.yml
··· 1 + when: 2 + - event: 3 + - push 4 + branch: 5 + - main 6 + - event: 7 + - manual 8 + 9 + engine: nixery 10 + 11 + dependencies: 12 + nixpkgs: 13 + - curl 14 + 15 + github:NixOS/nixpkgs/nixpkgs-unstable: 16 + - zig_0_16 17 + 18 + environment: 19 + SITE_PATH: zig-out/docs 20 + SITE_NAME: notmuch.zig 21 + 22 + steps: 23 + - name: Build site 24 + command: zig build docs 25 + 26 + - name: Install Wisp CLI 27 + command: | 28 + curl -o /tmp/wisp-cli https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux 29 + chmod a+x /tmp/wisp-cli 30 + 31 + - name: deploy to wisp 32 + command: | 33 + /tmp/wisp-cli \ 34 + "$WISP_HANDLE" \ 35 + --path "$SITE_PATH" \ 36 + --name "$SITE_NAME" \ 37 + --password "$WISP_APP_PASSWORD"