From 4e578b0c38fca076bb59654c91631bc3fdda2a2f Mon Sep 17 00:00:00 2001 From: Christian Deacon Date: Mon, 6 Dec 2021 01:25:17 -0600 Subject: [PATCH] Store artifact from Build workflow. --- .github/workflows/build.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dad3af3..2ee3b91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,13 +15,18 @@ jobs: - uses: actions/checkout@v2 with: submodules: recursive - - name: install libelf + - name: Install LibELF run: sudo apt install -y libelf-dev - - name: install libconfig + - name: Install LibConfig run: sudo apt install -y libconfig-dev - - name: install llvm + - name: Install LLVM run: sudo apt install -y llvm - - name: make + - name: Make project run: make - - name: install + - name: Install project run: sudo make install + - name: Store build artifacts + uses: actions/upload-artifact@master + with: + name: Build Output + path: build/xdpfw