Skip to content

Commit

Permalink
use dockerized tile-join
Browse files Browse the repository at this point in the history
  • Loading branch information
cldellow committed Oct 4, 2024
1 parent 93b8b73 commit 6dda5b4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tile-join.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: sudo mkdir /mnt/layers && sudo chown runner:docker /mnt/layers && cd /mnt/layers && aws s3 sync s3://hikes-public/layers/"$AREA"/ . --no-progress

- name: tile-join
run: /tmp/tile-join --no-tile-size-limit -o tiles.mbtiles /mnt/layers/*.mbtiles
run: ./bin/tile-join-docker --no-tile-size-limit -o tiles.mbtiles /mnt/layers/*.mbtiles

- name: Upload tiles
env:
Expand Down
9 changes: 9 additions & 0 deletions bin/tile-join-docker
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

exec docker run \
-it \
--rm \
--entrypoint /usr/bin/tile-join \
-w $(readlink -f .) \
-v $(git rev-parse --show-toplevel):$(git rev-parse --show-toplevel) \
versatiles/tippecanoe

0 comments on commit 6dda5b4

Please sign in to comment.