We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0424120 commit 3de030aCopy full SHA for 3de030a
.github/workflows/docs.yml
@@ -31,11 +31,13 @@ jobs:
31
version: 0.14.1
32
33
# I don't know why this is needed for the docs to succeed on CI, but otherwise it consistently fails with:
34
- # error: unable to open directory '.zig-cache/b/': FileNotFound
+ # error: unable to open directory '...': FileNotFound
35
# See https://github.com/mxpv/luaz/actions/runs/16698403816/job/47265761593
36
- - run: zig build
37
-
38
- - run: zig build docs
+ - run: |
+ mkdir -p ./.zig-global-cache
+ zig build docs
39
+ env:
40
+ ZIG_GLOBAL_CACHE_DIR: ./.zig-global-cache
41
42
- uses: actions/configure-pages@v5
43
- uses: actions/upload-pages-artifact@v3
0 commit comments