From d4bdf34fb60165948ed9ced799ac97dff5355ca8 Mon Sep 17 00:00:00 2001 From: Shanaka Prageeth Date: Wed, 12 Mar 2025 12:34:51 +0900 Subject: [PATCH] [fix}: ci-pipeline --- .github/workflows/ci.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bbc975799..e538bac1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,8 @@ on: push: pull_request: branches: - - main + - master + - dev jobs: build-ubuntu: @@ -26,11 +27,11 @@ jobs: run: | cd lib/ make - - name: Check output - run: find . -type f -name *.so - - name: Check output - run: find . -type f -name *.h - - name: Check output - run: find . -type f -name *.hpp - - name: Check output - run: find . -type f -name *.a + - name: Archive production artifacts + if: github.ref_name == 'master' || github.ref_name == 'dev' + uses: actions/upload-artifact@v4 + with: + name: build_output + path: | + dpdk/build + lib