From 525f11cb74b8ab4e8c3492ae68b151ebacb6b1d0 Mon Sep 17 00:00:00 2001 From: Christian Deacon Date: Mon, 6 Dec 2021 01:27:57 -0600 Subject: [PATCH] Download artifact from Build workflow in Run. --- .github/workflows/run.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run.yml b/.github/workflows/run.yml index d517314..2963479 100644 --- a/.github/workflows/run.yml +++ b/.github/workflows/run.yml @@ -13,6 +13,10 @@ jobs: needs: reuse_build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Download artifact from Build workflow + uses: actions/download-artifact@master + with: + name: Build Output + path: build/xdpfw - name: run XDP FW with help menu - run: xdpfw -h + run: ./build/xdpfw -h