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 2f09cd0 commit ff66061Copy full SHA for ff66061
.github/workflows/auto-publish.yml
@@ -2,7 +2,7 @@ name: auto-publish
2
run-name: Automatically publish documentation
3
on:
4
schedule:
5
- - cron: '40 22 * * THU'
+ - cron: '50 18 * * FRI'
6
jobs:
7
auto-publish:
8
runs-on: ubuntu-latest
@@ -15,11 +15,15 @@ jobs:
15
steps:
16
- name: Check out repository
17
uses: actions/checkout@v4
18
- - name: Check out live
+ - name: Check out main
19
run: |
20
- echo "Checking out live branch"
+ echo "Checking out main branch"
21
git config user.name github-actions
22
git config user.email [email protected]
23
+ git checkout main
24
+ - name: Check out live
25
+ run: |
26
+ echo "Checking out live branch"
27
git checkout live
28
- name: Merge from main into live
29
0 commit comments