Merge branch 'master' into add_on_click_option #998
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy | |
| on: push | |
| jobs: | |
| deploy_maps: | |
| if: github.repository_owner == 'graphhopper' | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: | | |
| curl --fail -H "Authorization: token ${{ secrets.PRIVATE_GITHUB_ACCESS_TOKEN }}" \ | |
| -H 'Accept: application/vnd.github.everest-preview+json' \ | |
| "https://api.github.com/repos/${{ secrets.DEPLOY_REPO }}/dispatches" \ | |
| -d '{"event_type": "deploy-maps", "client_payload": {"branch": "${{ github.ref_name }}", "commit": "${{ github.sha }}"}}' |