Skip to content

Commit

Permalink
Create deploy-frontend.yaml Action
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatGuySam authored Aug 1, 2024
1 parent f5c8352 commit 6e11fbe
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/deploy-frontend.yaml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 6e11fbe

Please sign in to comment.