Skip to content

Commit

Permalink
598 Create cron job to deploy frontend (#635)
Browse files Browse the repository at this point in the history
Added cron job to deploy-client-production.yml
  • Loading branch information
jeffplays2005 authored Jul 14, 2024
1 parent 5f8b83e commit 3c1cbb2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy-client-production.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Deploy Production Build of Client for UASC
name: Deploy Production Build of Client for UASC

on: [workflow_dispatch]
on:
workflow_dispatch:
# schedules this to run every day, at 00:00 UTC
schedule:
- cron: "0 0 * * *"

env:
NEXT_PUBLIC_FIREBASE_API_KEY: ${{secrets.PROD_FIREBASE_API_KEY}}
Expand Down

0 comments on commit 3c1cbb2

Please sign in to comment.