@anyproto/anytype-mcp 1.2.0 → 1.2.2

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.
@@ -49,17 +49,6 @@ jobs:
49
49
  token: ${{ secrets.GITHUB_TOKEN }}
50
50
 
51
51
  # build and push docker image
52
- - name: Set up QEMU
53
- uses: docker/setup-qemu-action@v3
54
- - name: Set up Docker Buildx
55
- uses: docker/setup-buildx-action@v3
56
- - name: Login to GitHub Container Registry
57
- uses: docker/login-action@v3
58
- with:
59
- registry: ghcr.io
60
- username: ${{ github.repository_owner }}
61
- password: ${{ secrets.GITHUB_TOKEN }}
62
-
63
52
  - name: Docker meta
64
53
  id: meta
65
54
  uses: docker/metadata-action@v5
@@ -68,18 +57,38 @@ jobs:
68
57
  ${{ github.repository }}
69
58
  ghcr.io/${{ github.repository }}
70
59
  tags: |
60
+ type=raw,value=latest
71
61
  type=ref,event=tag
72
62
  type=sha
73
- type=raw,value=latest
74
63
  type=semver,pattern={{version}}
75
64
  type=semver,pattern={{major}}.{{minor}}
76
65
  type=semver,pattern={{major}}
77
66
 
67
+ - name: Login to Docker Hub
68
+ uses: docker/login-action@v3
69
+ with:
70
+ registry: docker.io
71
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
72
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
73
+
74
+ - name: Login to GitHub Container Registry
75
+ uses: docker/login-action@v3
76
+ with:
77
+ registry: ghcr.io
78
+ username: ${{ github.repository_owner }}
79
+ password: ${{ secrets.GITHUB_TOKEN }}
80
+
81
+ - name: Set up QEMU
82
+ uses: docker/setup-qemu-action@v3
83
+ - name: Set up Docker Buildx
84
+ uses: docker/setup-buildx-action@v3
85
+
78
86
  - name: Build and push
79
87
  uses: docker/build-push-action@v6
80
88
  with:
81
89
  context: .
82
90
  file: Dockerfile-multi-stage
83
91
  push: true
92
+ platforms: linux/amd64,linux/arm64
84
93
  tags: ${{ steps.meta.outputs.tags }}
85
94
  labels: ${{ steps.meta.outputs.labels }}
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "mcp",
8
8
  "server"
9
9
  ],
10
- "version": "1.2.0",
10
+ "version": "1.2.2",
11
11
  "license": "MIT",
12
12
  "type": "module",
13
13
  "scripts": {