Skip to content

Commit 0ca5728

Browse files
committed
fix paths
1 parent 17ae51c commit 0ca5728

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ build/
66
envs/
77
lib/
88
Untitled*.*
9-
libdoc/
109
*.html
11-
dist/

anaconda-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ commands:
5959
env_spec: win_rfjl37
6060

6161
docs:
62-
unix: sphinx-build -M html docs dist/docs
62+
unix: sphinx-build -M html docs _artifacts/docs
6363
env_spec: rfjl37
6464

6565
env_specs:

ci/steps.common.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,16 @@ steps:
2020
- script: python -m scripts.atest
2121
displayName: Test
2222

23+
- ${{ if eq(parameters.name, 'Linux') }}:
24+
- script: sphinx-build -M html docs _artifacts/docs
25+
displayName: Build Docs
26+
- task: PublishBuildArtifacts@1
27+
displayName: Publish Docs
28+
inputs:
29+
PathtoPublish: _artifacts/docs/html
30+
ArtifactName: ${{ parameters.name }} tests
31+
condition: always()
32+
2333
- task: PublishTestResults@2
2434
displayName: Publish Test Results
2535
inputs:

0 commit comments

Comments
 (0)