Skip to content

Commit 090fbd8

Browse files
committed
add github action triggers
1 parent fa2181b commit 090fbd8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/prod.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Deploy to Prod (https://code-star.github.io/)
22

33
on:
4+
workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the Github Actions Workflow page directly
5+
tags:
6+
description: 'Rebuild and deploy to Prod'
7+
schedule: # Run workflow automatically
8+
- cron: '0 1 * * *' # Runs every day at 1:00 AM (min hour day month)
49
push:
510
branches:
611
- production

0 commit comments

Comments
 (0)