Skip to content

Commit b0ab36b

Browse files
Workflow - undo chmod
1 parent d728d62 commit b0ab36b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/autogen-docs.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
schedule:
55
- cron: '45 10 * * TUE'
66
- cron: '45 10 * * THU'
7-
- cron: '36 13 * * FRI'
7+
- cron: '10 14 * * FRI'
88
jobs:
99
autogen-docs:
1010
runs-on: macos-latest
@@ -30,12 +30,16 @@ jobs:
3030
run: |
3131
echo "Generating docs"
3232
./GenerateDocs.sh
33+
- name: Undo chmod
34+
run: |
35+
echo "Undoing script file chmod"
36+
chmod -x ./GenerateDocs.sh.
3337
- name: Commit and push changes
3438
run: |
3539
echo "Committing and pushing changes to autogen-docs branch"
3640
git config user.name github-actions
3741
git config user.email [email protected]
38-
git add ../docs/\*
42+
git add ../\*
3943
git commit -m "Automatically generated docs"
4044
git push
4145

0 commit comments

Comments
 (0)