Skip to content

Commit

Permalink
feat: add deploy workflow
Browse files Browse the repository at this point in the history
 ### Summary

 Scheduled for 10am ET every weekday.

 ### Test Plan

 - Manually trigger the workflow to ensure it runs successfully
  • Loading branch information
gminn committed Jan 13, 2025
1 parent f96e826 commit fbd5bea
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Site Deployment

on:
schedule:
# At 2:00pm UTC (10:00am ET) on Monday through Friday
# https://cron.help/#0_14_*_*_1-5
- cron: "0 14 * * 1-5"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
run_name:
description: "Name of the run, used to distinguish it from others"
required: false
type: string
default: ""

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Deploy hook request
run: curl -X POST ${{ secrets.CLOUDFLARE_DEPLOY_HOOK }}

0 comments on commit fbd5bea

Please sign in to comment.