mirror of
https://github.com/homarr-labs/dashboard-icons.git
synced 2025-10-27 07:30:18 +01:00
feat: Add daily release workflow for CF
This commit is contained in:
parent
6edf5d7040
commit
a3c97bf92a
1 changed files with 15 additions and 0 deletions
15
.github/workflows/daily_release.yml
vendored
Normal file
15
.github/workflows/daily_release.yml
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
name: Trigger Cloudflare Pages Build
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *' # Runs every day at midnight UTC
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
cron_job:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Run Your Cron Job
|
||||
run: |
|
||||
curl -X POST "${{ secrets.CLOUDFLARE_DEPLOY_HOOK_URL }}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue