Skip to content

Commit 85b1854

Browse files
authored
Enhance doc-check workflow with artifact upload
Added an upload artifact step to the documentation check workflow.
1 parent a8b0297 commit 85b1854

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/doc-check.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ jobs:
6868
- name: Documentation Link Check
6969
shell: bash
7070
run: |
71-
make clean
7271
make build-operator
7372
make test-docs
73+
74+
- name: Upload artifact
75+
uses: actions/upload-artifact@v4
76+
with:
77+
name: build-output
78+
path: coherence-operator/build/_output/*
79+
retention-days: 7

0 commit comments

Comments
 (0)