From 8a574b49e5ddf310f168df30dbfe59e13972fef2 Mon Sep 17 00:00:00 2001 From: Michael Cullan Date: Wed, 12 Feb 2025 12:57:21 -0800 Subject: [PATCH] Add build step to justfile publish script --- justfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/justfile b/justfile index 2f41a88..8e43e40 100644 --- a/justfile +++ b/justfile @@ -43,6 +43,8 @@ publish-release revision='master': git clone https://github.com/raphjaph/ordapi.git tmp/release cd tmp/release git checkout {{ revision }} + bun install + bun run build bun publish cd ../.. rm -rf tmp/release