fixes for mobile view when clicking on back or clearText buttons or n… #950
Workflow file for this run
This file contains 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 }}"}}' |