Skip to content

Commit ff66061

Browse files
checkout main
1 parent 2f09cd0 commit ff66061

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/auto-publish.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: auto-publish
22
run-name: Automatically publish documentation
33
on:
44
schedule:
5-
- cron: '40 22 * * THU'
5+
- cron: '50 18 * * FRI'
66
jobs:
77
auto-publish:
88
runs-on: ubuntu-latest
@@ -15,11 +15,15 @@ jobs:
1515
steps:
1616
- name: Check out repository
1717
uses: actions/checkout@v4
18-
- name: Check out live
18+
- name: Check out main
1919
run: |
20-
echo "Checking out live branch"
20+
echo "Checking out main branch"
2121
git config user.name github-actions
2222
git config user.email [email protected]
23+
git checkout main
24+
- name: Check out live
25+
run: |
26+
echo "Checking out live branch"
2327
git checkout live
2428
- name: Merge from main into live
2529
run: |

0 commit comments

Comments
 (0)