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 1ef2a3f commit 295c205Copy full SHA for 295c205
.github/workflows/ci.yml
@@ -97,6 +97,25 @@ jobs:
97
- name: Update versions
98
run: python update_version.py ${{ env.VERSION }}
99
100
+ - name: Clean documentation build
101
+ run: |
102
+ rm -rf docs/build/html
103
+ if: always()
104
+
105
+ - name: Build documentation
106
107
+ cd docs
108
+ make html
109
+ env:
110
+ PYTHONPATH: ${{ github.workspace }}/src
111
112
+ - name: Upload documentation artifact
113
+ uses: actions/upload-artifact@v4
114
+ with:
115
+ name: documentation
116
+ path: docs/build/html/
117
+ retention-days: 7
118
119
- name: Generate release notes
120
id: generate_notes
121
run: |
0 commit comments