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 d728d62 commit b0ab36bCopy full SHA for b0ab36b
.github/workflows/autogen-docs.yml
@@ -4,7 +4,7 @@ on:
4
schedule:
5
- cron: '45 10 * * TUE'
6
- cron: '45 10 * * THU'
7
- - cron: '36 13 * * FRI'
+ - cron: '10 14 * * FRI'
8
jobs:
9
autogen-docs:
10
runs-on: macos-latest
@@ -30,12 +30,16 @@ jobs:
30
run: |
31
echo "Generating docs"
32
./GenerateDocs.sh
33
+ - name: Undo chmod
34
+ run: |
35
+ echo "Undoing script file chmod"
36
+ chmod -x ./GenerateDocs.sh.
37
- name: Commit and push changes
38
39
echo "Committing and pushing changes to autogen-docs branch"
40
git config user.name github-actions
41
git config user.email [email protected]
- git add ../docs/\*
42
+ git add ../\*
43
git commit -m "Automatically generated docs"
44
git push
45
0 commit comments