Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/auto-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: auto-publish
run-name: Automatically publish documentation
on:
schedule:
# Run at 2:00 AM UTC on Wednesday and Friday
# Run at 2:00 AM UTC on Wednesday and Friday.
- cron: '0 2 * * WED,FRI'
jobs:
auto-publish:
Expand All @@ -15,7 +15,7 @@ jobs:
working-directory: ./
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Check out main
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/autogen-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: autogen-docs
run-name: Automatically run GenerateDocs
on:
schedule:
# Run at 10:45 AM UTC on Tuesday and Thursday.
- cron: '45 10 * * TUE'
- cron: '45 10 * * THU'
workflow_dispatch:
Expand All @@ -16,15 +17,16 @@ jobs:
working-directory: ./generate-docs
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Make the script file executable
run: |
echo "Making script file executable"
chmod +x ./GenerateDocs.sh
- name: Set up node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '18'
# Use an Active LTS version of Node.js.
node-version: 'lts/*'
- name: Run GenerateDocs script
run: |
echo "Generating docs"
Expand Down