Skip to content

Commit 09a35e8

Browse files
committed
Fix action trigger branch
1 parent 4961366 commit 09a35e8

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

.github/actions/docs.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ name: Documentation
22
on:
33
push:
44
branches:
5-
- dev
5+
- develop
66
jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/setup-python@v2
11-
- uses: actions/checkout@master
12-
with:
13-
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
14-
- name: Build and Commit
15-
uses: sphinx-notes/pages@v2
16-
- name: Push changes
17-
uses: ad-m/github-push-action@master
18-
with:
19-
github_token: ${{ secrets.GITHUB_TOKEN }}
20-
branch: gh-pages
21-
documentation_path: './docs'
10+
- uses: actions/setup-python@v2
11+
- uses: actions/checkout@master
12+
with:
13+
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
14+
- name: Build and Commit
15+
uses: sphinx-notes/pages@v2
16+
- name: Push changes
17+
uses: ad-m/github-push-action@master
18+
with:
19+
github_token: ${{ secrets.GITHUB_TOKEN }}
20+
branch: gh-pages
21+
documentation_path: "./docs"

0 commit comments

Comments
 (0)