mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Create deploy-frontend.yaml Action
This commit is contained in:
parent
f5c83529d5
commit
6e11fbe8e7
1 changed files with 17 additions and 0 deletions
17
.github/workflows/deploy-frontend.yaml
vendored
Normal file
17
.github/workflows/deploy-frontend.yaml
vendored
Normal 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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue