From acbc0f5551ded5d7b31772b2166bc3d43cd4d0c0 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Wed, 17 Feb 2021 14:42:15 +1100 Subject: [PATCH] Upload nectar binary in addition to swap_cli --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 45d9e057..6470873c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -103,12 +103,18 @@ jobs: run: | cargo build -p swap --target ${{ matrix.target }} - - name: Upload binary + - name: Upload swap_cli binary uses: actions/upload-artifact@v2-preview with: name: swap-${{ matrix.target }} path: target/${{ matrix.target }}/debug/swap_cli + - name: Upload nectar binary + uses: actions/upload-artifact@v2-preview + with: + name: nectar-${{ matrix.target }} + path: target/${{ matrix.target }}/debug/nectar + docker_tests: env: TARGET: x86_64-unknown-linux-gnu