Zig bindings for the notmuch C library
0

Configure Feed

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

add publish workflow

Jeffrey C. Ollie (Mar 1, 2026, 2:49 PM -0600) 87941376 dee18277

+26
+26
.forgejo/workflows/publish.yaml
··· 1 + # SPDX-FileCopyrightText: © 2024 Jeffrey C. Ollie 2 + # SPDX-License-Identifier: MIT 3 + 4 + name: Publish docs 5 + 6 + on: 7 + push: 8 + branches: 9 + - main 10 + 11 + jobs: 12 + publish: 13 + runs-on: nixos 14 + steps: 15 + - name: Checkout 16 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 17 + 18 + - name: Build docs 19 + run: nix develop -c zig build docs 20 + 21 + - name: Publish docs 22 + uses: actions/git-pages@v2 23 + with: 24 + site: https://git.ocjtech.us/jeff/zig-notmuch 25 + token: ${{ forge.token }} 26 + source: zig-out/docs