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 dae9dbd commit eee59b7Copy full SHA for eee59b7
.github/workflows/publish-docs.yml
@@ -6,6 +6,9 @@ on: # yamllint disable-line rule:truthy
6
- master
7
tags:
8
- v*
9
+ pull_request:
10
+ branches:
11
+ - master
12
13
jobs:
14
build:
@@ -14,7 +17,7 @@ jobs:
17
- uses: SciCatProject/docs-template/.github/actions/[email protected]
15
18
with:
16
19
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- push: true
20
+ push: ${{ github.event_name == 'push' && 'true' || '' }}
21
# if this file does not need to exist locally, the one in the action is used
22
# https://github.com/SciCatProject/docs-template/blob/v0.1.0/.github/actions/mkdocs-pages/mkdocs-nested.yml
- docs_config: .github/actions/mkdocs-pages/mkdocs-nested.yml
23
+ docs_config: .github/mkdocs/mkdocs-nested.yml
0 commit comments