@elizaos/plugin-mcp 1.0.0-beta.56 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/npm-deploy.yml +2 -12
- package/dist/index.js +169 -871
- package/package.json +2 -2
|
@@ -4,7 +4,6 @@ on:
|
|
|
4
4
|
push:
|
|
5
5
|
branches:
|
|
6
6
|
- 1.x
|
|
7
|
-
- 0.x
|
|
8
7
|
workflow_dispatch:
|
|
9
8
|
|
|
10
9
|
jobs:
|
|
@@ -84,22 +83,13 @@ jobs:
|
|
|
84
83
|
uses: oven-sh/setup-bun@v2
|
|
85
84
|
|
|
86
85
|
- name: Install dependencies
|
|
87
|
-
run: bun install
|
|
86
|
+
run: bun install
|
|
88
87
|
|
|
89
88
|
- name: Build package
|
|
90
89
|
run: bun run build
|
|
91
90
|
|
|
92
91
|
- name: Publish to npm
|
|
93
|
-
run:
|
|
94
|
-
# strip “refs/heads/” prefix
|
|
95
|
-
BRANCH=${GITHUB_REF#refs/heads/}
|
|
96
|
-
if [[ "$BRANCH" == "1.x" ]]; then
|
|
97
|
-
echo "Publishing to npm under the 'beta' tag"
|
|
98
|
-
bun publish --tag beta
|
|
99
|
-
else
|
|
100
|
-
echo "Publishing to npm under the 'latest' tag"
|
|
101
|
-
bun publish
|
|
102
|
-
fi
|
|
92
|
+
run: bun publish
|
|
103
93
|
env:
|
|
104
94
|
NPM_CONFIG_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
105
95
|
|