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.
github.event_name == schedule
1 parent e03a222 commit ad90e3aCopy full SHA for ad90e3a
.github/workflows/documentation.yaml
@@ -8,7 +8,7 @@ on:
8
9
# Re-run every day at 4PM
10
schedule:
11
- - cron: "55 * * * *"
+ - cron: "01 * * * *"
12
13
# Re-run on demand:
14
workflow_dispatch:
@@ -114,7 +114,7 @@ jobs:
114
- run: echo "event_name=${{github.event_name}}"
115
116
- name: Deploy docs
117
- if: ${{ ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && github.event.ref == 'refs/heads/main' }}
+ if: ${{ ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' ) && github.event.ref == 'refs/heads/main' }}
118
uses: peaceiris/actions-gh-pages@v4
119
with:
120
github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments