Skip to content

Commit d4bdf34

Browse files
[fix}: ci-pipeline
1 parent ad80531 commit d4bdf34

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/ci.yml

+10-9
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ on:
44
push:
55
pull_request:
66
branches:
7-
- main
7+
- master
8+
- dev
89

910
jobs:
1011
build-ubuntu:
@@ -26,11 +27,11 @@ jobs:
2627
run: |
2728
cd lib/
2829
make
29-
- name: Check output
30-
run: find . -type f -name *.so
31-
- name: Check output
32-
run: find . -type f -name *.h
33-
- name: Check output
34-
run: find . -type f -name *.hpp
35-
- name: Check output
36-
run: find . -type f -name *.a
30+
- name: Archive production artifacts
31+
if: github.ref_name == 'master' || github.ref_name == 'dev'
32+
uses: actions/upload-artifact@v4
33+
with:
34+
name: build_output
35+
path: |
36+
dpdk/build
37+
lib

0 commit comments

Comments
 (0)