Create deploy-frontend.yaml Action

This commit is contained in:
Sam Carlton 2024-08-01 14:44:03 -05:00 committed by GitHub
parent f5c83529d5
commit 6e11fbe8e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

17
.github/workflows/deploy-frontend.yaml vendored Normal file
View file

@ -0,0 +1,17 @@
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 }}