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: