mobile map bug fix #673
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
jobs: | |
fetch_strava: | |
name: Fetch Strava | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Make Request | |
id: myRequest | |
uses: fjogeleit/http-request-action@v1 | |
with: | |
method: "GET" | |
url: "https://activitymap.dominik.page/api/strava/cron?number=30" | |
timeout: 10000 | |
- name: Show Response | |
run: | | |
echo ${{ steps.myRequest.outputs.response }} | |
echo ${{ steps.myRequest.outputs.headers }} | |
echo ${{ steps.myRequest.outputs.status }} | |
echo ${{ fromJson(steps.myRequest.outputs.response).field_you_want_to_access }} |