Skip to content

Commit 81c927f

Browse files
committed
Finalize 2.2.0
1 parent 7c08e2e commit 81c927f

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/split.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ jobs:
128128
- local: 'packages/templates'
129129
repo: 'cognesy/instructor-templates'
130130
name: 'instructor-templates'
131+
- local: 'packages/telemetry'
132+
repo: 'cognesy/instructor-telemetry'
133+
name: 'instructor-telemetry'
131134
- local: 'packages/utils'
132135
repo: 'cognesy/instructor-utils'
133136
name: 'instructor-utils'

packages.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@
4242
"composer_name": "cognesy/instructor-doctools",
4343
"tier": "dev"
4444
},
45-
{
46-
"local": "packages/doctor",
47-
"tier": "dev"
48-
},
4945
{
5046
"local": "packages/dynamic",
5147
"repo": "cognesy/instructor-dynamic",
@@ -67,10 +63,6 @@
6763
"composer_name": "cognesy/instructor-events",
6864
"tier": "library"
6965
},
70-
{
71-
"local": "packages/experimental",
72-
"tier": "dev"
73-
},
7466
{
7567
"local": "packages/http-client",
7668
"repo": "cognesy/instructor-http-client",

scripts/generate-split-matrix.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,9 @@ while IFS=$'\t' read -r local repo github_name composer_name; do
1515
echo " - local: '$local'"
1616
echo " repo: '$repo'"
1717
echo " name: '$github_name'"
18-
done < <(jq -r '.packages[] | [.local, .repo, .github_name, .composer_name] | @tsv' "$PACKAGES_JSON")
18+
done < <(jq -r '
19+
.packages[]
20+
| select((.repo // "") != "" and (.github_name // "") != "")
21+
| [.local, .repo, .github_name, .composer_name]
22+
| @tsv
23+
' "$PACKAGES_JSON")

0 commit comments

Comments
 (0)