Skip to content

Generate tiles

Generate tiles #13

name: Generate tiles
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # every day at midnight
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Install tippecanoe
run: brew install tippecanoe
- name: Run python download script
run: python3 download_libraries.py
- name: Run the generate shell file
run: ./generate.sh
- name: check for changes
run: git status
- name: commit changed files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git diff-index --quiet HEAD || git commit -m "Auto regeneration of tiles"
- name: fetch from main
run: git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
- name: push code to main
run: git push origin HEAD:main