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 5a07588 commit e3f0d40Copy full SHA for e3f0d40
.github/workflows/doc-build.yml
@@ -156,6 +156,7 @@ jobs:
156
west init -l .
157
158
- name: build-docs
159
+ continue-on-error: true
160
run: |
161
if [[ "$GITHUB_REF" =~ "refs/tags/v" ]]; then
162
DOC_TAG="release"
@@ -166,7 +167,11 @@ jobs:
166
167
DOC_TAG=${DOC_TAG} SPHINXOPTS="-q -j auto" LATEXMKOPTS="-quiet -halt-on-error" make -C doc pdf
168
169
- name: upload-build
170
+ if: always()
171
uses: actions/upload-artifact@v3
172
with:
173
name: pdf-output
- path: doc/_build/latex/zephyr.pdf
174
+ if-no-files-found: ignore
175
+ path: |
176
+ doc/_build/latex/zephyr.pdf
177
+ doc/_build/latex/zephyr.log
0 commit comments