diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 665d6f3..f5b5e30 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,6 +65,11 @@ jobs: run: | echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | head -n 1)" >> $GITHUB_ENV + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + with: + platforms: 'arm64' + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 @@ -80,7 +85,7 @@ jobs: context: . push: true tags: maptiler/tileserver-gl:latest, maptiler/tileserver-gl:${{ env.PACKAGE_VERSION }} - platforms: linux/amd64 + platforms: linux/arm64,linux/amd64 - name: Create Tileserver Light Directory run: node publish.js --no-publish @@ -104,4 +109,4 @@ jobs: file: ./light/Dockerfile push: true tags: maptiler/tileserver-gl-light:latest, maptiler/tileserver-gl-light:${{ env.PACKAGE_VERSION }} - platforms: linux/amd64 + platforms: linux/arm64,linux/amd64 diff --git a/package.json b/package.json index 0288582..ad19314 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tileserver-gl", - "version": "4.2.1", + "version": "4.3.0", "description": "Map tile server for JSON GL styles - vector and server side generated raster tiles", "main": "src/main.js", "bin": "src/main.js",