We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa2181b commit 090fbd8Copy full SHA for 090fbd8
.github/workflows/prod.yml
@@ -1,6 +1,11 @@
1
name: Deploy to Prod (https://code-star.github.io/)
2
3
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)
9
push:
10
branches:
11
- production
0 commit comments