Skip to content

Commit 5772dc4

Browse files
committed
fix(ci): include skill docs in release artifacts
1 parent d62e5d9 commit 5772dc4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,14 @@ jobs:
148148
path: ./packages/cli/dist
149149
if-no-files-found: error
150150

151+
- name: Upload cli skills (docs for agent integration)
152+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
153+
if: ${{ matrix.settings.target == 'x86_64-unknown-linux-gnu' }}
154+
with:
155+
name: cli-skills
156+
path: ./packages/cli/skills
157+
if-no-files-found: error
158+
151159
Release:
152160
runs-on: ubuntu-latest
153161
needs: [prepare, build-rust]
@@ -180,6 +188,13 @@ jobs:
180188
pattern: cli
181189
merge-multiple: true
182190

191+
- name: Download cli skills
192+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
193+
with:
194+
path: packages/cli/skills
195+
pattern: cli-skills
196+
merge-multiple: true
197+
183198
- name: Download cli binding
184199
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
185200
with:

0 commit comments

Comments
 (0)