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: API Deployment Endpoint | |
on: [push] | |
jobs: | |
api_request_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Make API Request | |
run: | | |
# Use curl or other HTTP client to make the API request | |
curl -X GET https://mobilelotw.org/api/v1/deploy?API_KEY=${{ secrets.API_KEY }} |