appium-mcp 1.1.12 → 1.1.13
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.
|
@@ -15,9 +15,10 @@ jobs:
|
|
|
15
15
|
build:
|
|
16
16
|
runs-on: macos-latest
|
|
17
17
|
steps:
|
|
18
|
-
- uses: actions/checkout@
|
|
18
|
+
- uses: actions/checkout@v5
|
|
19
19
|
with:
|
|
20
20
|
submodules: recursive
|
|
21
|
+
fetch-depth: 0 # Fetch all tags for version detection
|
|
21
22
|
- name: Setup submodules sparse-checkout
|
|
22
23
|
run: |
|
|
23
24
|
chmod +x scripts/setup-submodules-sparse.sh
|
|
@@ -34,3 +35,19 @@ jobs:
|
|
|
34
35
|
env:
|
|
35
36
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
36
37
|
name: Release
|
|
38
|
+
# MCP publishing
|
|
39
|
+
- name: Update server.json version to match package.json
|
|
40
|
+
run: |
|
|
41
|
+
VERSION=$(node -p "require('./package.json').version")
|
|
42
|
+
jq --arg v "$VERSION" '.version = $v | .packages[0].version = $v' server.json > tmp && mv tmp server.json
|
|
43
|
+
echo "Updated server.json version to $VERSION"
|
|
44
|
+
|
|
45
|
+
- name: Download MCP Publisher
|
|
46
|
+
run: |
|
|
47
|
+
curl -L "https://github.com/modelcontextprotocol/registry/releases/download/latest/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
|
|
48
|
+
|
|
49
|
+
- name: Publish to MCP Registry
|
|
50
|
+
run: |
|
|
51
|
+
chmod +x mcp-publisher
|
|
52
|
+
./mcp-publisher login github-oidc
|
|
53
|
+
./mcp-publisher publish
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.1.13](https://github.com/appium/appium-mcp/compare/v1.1.12...v1.1.13) (2025-11-21)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* integrate mcp and npm publishing actions ([#44](https://github.com/appium/appium-mcp/issues/44)) ([cad4af3](https://github.com/appium/appium-mcp/commit/cad4af3849fe3bbe780f2e780f72e14c399b2db6))
|
|
6
|
+
|
|
1
7
|
## [1.1.12](https://github.com/appium/appium-mcp/compare/v1.1.11...v1.1.12) (2025-11-21)
|
|
2
8
|
|
|
3
9
|
### Miscellaneous Chores
|
package/package.json
CHANGED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
name: Publish to MCP Registry
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
tags: ['v*']
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
publish:
|
|
9
|
-
runs-on: ubuntu-latest
|
|
10
|
-
permissions:
|
|
11
|
-
id-token: write
|
|
12
|
-
contents: read
|
|
13
|
-
|
|
14
|
-
steps:
|
|
15
|
-
- uses: actions/checkout@v5
|
|
16
|
-
with:
|
|
17
|
-
submodules: recursive
|
|
18
|
-
|
|
19
|
-
- name: Setup submodules sparse-checkout
|
|
20
|
-
run: |
|
|
21
|
-
chmod +x scripts/setup-submodules-sparse.sh
|
|
22
|
-
./scripts/setup-submodules-sparse.sh
|
|
23
|
-
|
|
24
|
-
- name: Setup Node.js
|
|
25
|
-
uses: actions/setup-node@v5
|
|
26
|
-
with:
|
|
27
|
-
node-version: 'lts/*'
|
|
28
|
-
cache: 'npm'
|
|
29
|
-
|
|
30
|
-
- name: Install dependencies
|
|
31
|
-
run: npm install --no-package-lock --force
|
|
32
|
-
|
|
33
|
-
- name: Build
|
|
34
|
-
run: |
|
|
35
|
-
npm run build --if-present
|
|
36
|
-
|
|
37
|
-
# MCP publishing
|
|
38
|
-
- name: Download MCP Publisher
|
|
39
|
-
run: |
|
|
40
|
-
curl -L "https://github.com/modelcontextprotocol/registry/releases/download/latest/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
|
|
41
|
-
|
|
42
|
-
- name: Update server.json version to match git tag
|
|
43
|
-
run: |
|
|
44
|
-
VERSION=${GITHUB_REF#refs/tags/v}
|
|
45
|
-
jq --arg v "$VERSION" '.version = $v | .packages[0].version = $v' server.json > tmp && mv tmp server.json
|
|
46
|
-
echo "Updated server.json version to $VERSION"
|
|
47
|
-
cat server.json
|
|
48
|
-
|
|
49
|
-
- name: Publish to MCP Registry
|
|
50
|
-
run: |
|
|
51
|
-
chmod +x mcp-publisher
|
|
52
|
-
./mcp-publisher login github-oidc
|
|
53
|
-
./mcp-publisher publish
|