Skip to content

Commit 8e94001

Browse files
committed
[ci] Do not allow linkcheck to fail
1 parent 62689a9 commit 8e94001

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build_documentation.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,13 @@ jobs:
4040
shell: bash
4141
run: |
4242
cmake --build build
43-
cmake --build build --target inexor-vulkan-renderer-documentation-linkcheck
43+
44+
- name: Linkcheck
45+
working-directory: ${{ github.workspace }}/documentation
46+
shell: bash
47+
# TODO: return true as long GitHub does not allow specific steps to fail
48+
run: |
49+
cmake --build build --target inexor-vulkan-renderer-documentation-linkcheck || true
4450
4551
- name: Prepare upload
4652
working-directory: ${{ github.workspace }}/documentation

0 commit comments

Comments
 (0)