Skip to content

Commit d31c4a4

Browse files
authored
[merge] Merge pull request #387 from inexorgame/iceflower/ci_linkcheck
[ci] Do not allow linkcheck to fail
2 parents 7a145af + 8e94001 commit d31c4a4

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)