Deploy 02 API #460
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 02 API | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 3 * * *' # Runs every day at 3 AM | |
| jobs: | |
| make-get-request: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Functions Deploy Hook | |
| run: | | |
| curl -X POST "$API_DEPLOY_HOOK_URL" | |
| env: | |
| API_DEPLOY_HOOK_URL: ${{ secrets.API_DEPLOY_HOOK_URL }} |