Skip to content

Commit 970e014

Browse files
authored
Add save-artifacts step to CI workflow
Add step to save build artifacts after testing.
1 parent 26d368d commit 970e014

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,11 @@ jobs:
1818
run: make
1919
- name: test
2020
run: make test
21+
- name: save-artifacts
22+
23+
uses: actions/upload-artifact@v6.0.0
24+
with:
25+
name: hed
26+
path: ./build/*
27+
include-hidden-files: true
28+

0 commit comments

Comments
 (0)