This repository was archived by the owner on Sep 25, 2023. It is now read-only.
File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -44,13 +44,16 @@ jobs:
44
44
date : ${{ inputs.date }}
45
45
sha : ${{ inputs.sha }}
46
46
docs-build :
47
- if : github.ref_type == 'branch' && github.event_name == 'push'
47
+ if : github.ref_type == 'branch'
48
48
needs : python-build
49
49
secrets : inherit
50
50
uses :
rapidsai/shared-action-workflows/.github/workflows/[email protected]
51
51
with :
52
- build_type : branch
53
- node_type : " gpu-v100-latest-1"
54
52
arch : " amd64"
53
+ branch : ${{ inputs.branch }}
54
+ build_type : ${{ inputs.build_type || 'branch' }}
55
55
container_image : " rapidsai/ci:latest"
56
+ date : ${{ inputs.date }}
57
+ node_type : " gpu-v100-latest-1"
56
58
run_script : " ci/build_docs.sh"
59
+ sha : ${{ inputs.sha }}
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ sphinx-build -b text source _text
31
31
popd
32
32
33
33
34
- if [[ ${RAPIDS_BUILD_TYPE} == " branch " ]]; then
34
+ if [[ " ${RAPIDS_BUILD_TYPE} " != " pull-request " ]]; then
35
35
rapids-logger " Upload Docs to S3"
36
36
aws s3 sync --no-progress --delete docs/_html " s3://rapidsai-docs/cusignal/${VERSION_NUMBER} /html"
37
37
aws s3 sync --no-progress --delete docs/_text " s3://rapidsai-docs/cusignal/${VERSION_NUMBER} /txt"
You can’t perform that action at this time.
0 commit comments