Skip to content

Commit 6e11fbe

Browse files
authored
Create deploy-frontend.yaml Action
1 parent f5c8352 commit 6e11fbe

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Deploy 03 Front-End
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 4 * * *' # Runs every day at 4 AM
7+
8+
jobs:
9+
make-get-request:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Trigger Functions Deploy Hook
14+
run: |
15+
curl -X POST "$FRONTEND_DEPLOY_HOOK_URL"
16+
env:
17+
FRONTEND_DEPLOY_HOOK_URL: ${{ secrets.FRONTEND_DEPLOY_HOOK_URL }}

0 commit comments

Comments
 (0)