doesitarm/.github/workflows/deploy-functions.yaml
2024-08-01 14:26:24 -05:00

16 lines
347 B
YAML

name: Deploy Functions
on:
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 GET "$FUNCTIONS_DEPLOY_HOOK_URL"
env:
FUNCTIONS_DEPLOY_HOOK_URL: ${{ secrets.FUNCTIONS_DEPLOY_HOOK_URL }}