You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- [⭐️ First Deployment with `GITHUB_TOKEN`](#%EF%B8%8F-first-deployment-with-github_token)
84
84
- [⭐️ Use the latest and specific release](#%EF%B8%8F-use-the-latest-and-specific-release)
85
+
- [⭐️ Schedule and Manual Deployment](#%EF%B8%8F-schedule-and-manual-deployment)
85
86
- [Examples](#examples)
86
87
- [⭐️ Static Site Generators with Node.js](#%EF%B8%8F-static-site-generators-with-nodejs)
87
88
- [⭐️ Gatsby](#%EF%B8%8F-gatsby)
@@ -348,7 +349,7 @@ When you use `deploy_key`, set your private key to the repository which includes
348
349
349
350
**Note that `GITHUB_TOKEN` has no permission to access to external repositories. Please create a personal access token and set it to `personal_token` like `personal_token: ${{ secrets.PERSONAL_TOKEN }}`.**
350
351
351
-
Use case:
352
+
Use case:
352
353
353
354
A GitHub Free Plan account cannot use the GitHub Pages in a private repository. To make your source contents private and deploy it with the GitHub Pages, you can deploy your site from a private repository to a public repository using this option.
354
355
@@ -536,6 +537,32 @@ updates:
536
537
537
538
See the official documentation for more details about the Dependabot: [Keeping your dependencies updated automatically - GitHub Docs](https://docs.github.com/en/github/administering-a-repository/keeping-your-dependencies-updated-automatically)
538
539
540
+
### ⭐️ Schedule and Manual Deployment
541
+
542
+
For deploying regularly, we can set the `on.schedule` workflow trigger.
543
+
See [Scheduled events | Events that trigger workflows - GitHub Docs](https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events)
544
+
545
+
For deploying manually, we can set the `on.workflow_dispatch` workflow trigger.
546
+
See [Manual events `workflow_dispatch` | Events that trigger workflows - GitHub Docs](https://docs.github.com/en/actions/reference/events-that-trigger-workflows#manual-events)
0 commit comments