From 22cdad338bdc89ec0ef94a97789e9e4993915b53 Mon Sep 17 00:00:00 2001 From: binarybaron <86064887+binarybaron@users.noreply.github.com> Date: Thu, 12 May 2022 21:53:00 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d1cb608..c900a834 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,11 +56,17 @@ jobs: run: | cargo build -p swap --target ${{ matrix.target }} - - name: Upload swap binaries + - name: Upload swap binary uses: actions/upload-artifact@v2-preview with: name: swap-${{ matrix.target }} - path: target/*/** + path: target/${{ matrix.target }}/debug/swap* + + - name: Upload asb binary + uses: actions/upload-artifact@v2-preview + with: + name: asb-${{ matrix.target }} + path: target/${{ matrix.target }}/debug/asb* test: strategy: