From 5772dc472c605a385bb1c08a243abf7953befdb2 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Sat, 21 Mar 2026 21:53:06 +0900 Subject: [PATCH] fix(ci): include skill docs in release artifacts --- .github/workflows/release.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e28d4a0fca..65c7fc207f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -148,6 +148,14 @@ jobs: path: ./packages/cli/dist if-no-files-found: error + - name: Upload cli skills (docs for agent integration) + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + if: ${{ matrix.settings.target == 'x86_64-unknown-linux-gnu' }} + with: + name: cli-skills + path: ./packages/cli/skills + if-no-files-found: error + Release: runs-on: ubuntu-latest needs: [prepare, build-rust] @@ -180,6 +188,13 @@ jobs: pattern: cli merge-multiple: true + - name: Download cli skills + uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 + with: + path: packages/cli/skills + pattern: cli-skills + merge-multiple: true + - name: Download cli binding uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 with: