From ee39ef7e5a3dd77a3341942c353affde152a0bf1 Mon Sep 17 00:00:00 2001 From: Panat Taranat Date: Sat, 12 Sep 2026 17:30:03 -0400 Subject: [PATCH] feat(mise): global docs-publish task for the vault site; capture ruby compile setting --- dot_config/mise/config.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/dot_config/mise/config.toml b/dot_config/mise/config.toml index 3baf23b..6e21dc4 100644 --- a/dot_config/mise/config.toml +++ b/dot_config/mise/config.toml @@ -66,3 +66,18 @@ env_cache = true # Warn when entering a directory whose config asks for tools that are not # installed, instead of silently using the wrong version. missing_tools = "always" + +[settings.ruby] +compile = false + +# `mise run docs-publish` from any directory: build the Obsidian vault into +# the tailnet docs site and push it to kurokami. Lives in dungeonbooks/quartz. +[tasks.docs-publish] +description = "Build the Dungeon Books vault site and publish it to kurokami" +dir = "~/projects/dungeonbooks/quartz" +run = "mise exec -- ./docs-publish" + +[tasks.docs-publish-dry] +description = "Build the vault site and show what would change on kurokami" +dir = "~/projects/dungeonbooks/quartz" +run = "mise exec -- ./docs-publish --dry-run"