mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
17 lines
369 B
YAML
17 lines
369 B
YAML
name: Deploy 03 Front-End
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 4 * * *' # Runs every day at 4 AM
|
|
|
|
jobs:
|
|
make-get-request:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Trigger Functions Deploy Hook
|
|
run: |
|
|
curl -X POST "$FRONTEND_DEPLOY_HOOK_URL"
|
|
env:
|
|
FRONTEND_DEPLOY_HOOK_URL: ${{ secrets.FRONTEND_DEPLOY_HOOK_URL }}
|