From e1d285e7db0de1e8b8c5732832c0fb7bea212f87 Mon Sep 17 00:00:00 2001 From: xavix-yo Date: Wed, 22 Jul 2026 12:01:25 +0100 Subject: [PATCH] ci: bundle docs/ in release tarball --- ci/package.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/package.sh b/ci/package.sh index d4696b6..374cd17 100755 --- a/ci/package.sh +++ b/ci/package.sh @@ -16,7 +16,7 @@ # --output Directory where the .tar.gz will be written # # The tarball contains everything needed to run (or uninstall) Skald Circle: -# bin/skald, bin/skald-setup, web/, agents/, skills/, +# bin/skald, bin/skald-setup, web/, agents/, skills/, docs/, # default.config.yaml, providers.yaml, requirements.txt, # requirements-optional.txt, run.sh, update.sh, uninstall.sh @@ -93,6 +93,7 @@ chmod 755 "$STAGING/bin/skald" "$STAGING/bin/skald-setup" cp -r web "$STAGING/web" cp -r agents "$STAGING/agents" cp -r skills "$STAGING/skills" +cp -r docs "$STAGING/docs" cp default.config.yaml "$STAGING/default.config.yaml" cp providers.yaml "$STAGING/providers.yaml" cp requirements.txt "$STAGING/requirements.txt"