tileserver-gl-light 4.2.1 → 4.3.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.
@@ -61,6 +61,15 @@ jobs:
61
61
  env:
62
62
  NPM_TOKEN: ${{ github.event.inputs.npm_token }}
63
63
 
64
+ - name: Get version
65
+ run: |
66
+ echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | head -n 1)" >> $GITHUB_ENV
67
+
68
+ - name: Set up QEMU
69
+ uses: docker/setup-qemu-action@v2
70
+ with:
71
+ platforms: 'arm64'
72
+
64
73
  - name: Set up Docker Buildx
65
74
  uses: docker/setup-buildx-action@v2
66
75
 
@@ -75,8 +84,8 @@ jobs:
75
84
  with:
76
85
  context: .
77
86
  push: true
78
- tags: maptiler/tileserver-gl:latest, maptiler/tileserver-gl:${{ env.PACKAGE_VERSION }}
79
- platforms: linux/amd64
87
+ tags: maptiler/tileserver-gl:latest, maptiler/tileserver-gl:v${{ env.PACKAGE_VERSION }}
88
+ platforms: linux/arm64,linux/amd64
80
89
 
81
90
  - name: Create Tileserver Light Directory
82
91
  run: node publish.js --no-publish
@@ -99,5 +108,5 @@ jobs:
99
108
  context: ./light
100
109
  file: ./light/Dockerfile
101
110
  push: true
102
- tags: maptiler/tileserver-gl-light:latest, maptiler/tileserver-gl-light:${{ env.PACKAGE_VERSION }}
103
- platforms: linux/amd64
111
+ tags: maptiler/tileserver-gl-light:latest, maptiler/tileserver-gl-light:v${{ env.PACKAGE_VERSION }}
112
+ platforms: linux/arm64,linux/amd64
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tileserver-gl-light",
3
- "version": "4.2.1",
3
+ "version": "4.3.2",
4
4
  "description": "Map tile server for JSON GL styles - serving vector tiles",
5
5
  "main": "src/main.js",
6
6
  "bin": "src/main.js",
@@ -28,7 +28,7 @@
28
28
  "color": "4.2.3",
29
29
  "commander": "9.4.1",
30
30
  "cors": "2.8.5",
31
- "express": "4.18.1",
31
+ "express": "4.18.2",
32
32
  "handlebars": "4.7.7",
33
33
  "http-shutdown": "1.2.2",
34
34
  "morgan": "1.10.0",