Skip to content

Commit fc0f110

Browse files
Possibly fix pathing
1 parent 5152a29 commit fc0f110

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/builds.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,13 @@ jobs:
324324
uses: actions/download-artifact@v4
325325
with:
326326
name: compile-database
327-
path: build-release/
327+
328+
- name: Verify compile database
329+
run: |
330+
echo "Artifact contents:"
331+
find build-release/ -type f | head -20
332+
test -f build-release/compile_commands.json
333+
echo "compile_commands.json found ($(wc -l < build-release/compile_commands.json) lines)"
328334
329335
- name: Collect source files
330336
run: |

0 commit comments

Comments
 (0)