From 29791461f4223e22b2666d6e6353f0ba59a0d6cc Mon Sep 17 00:00:00 2001 From: Flat Date: Sun, 26 Nov 2023 16:03:37 -0500 Subject: [PATCH] ci: fix artifacts --- .github/workflows/build-and-test.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index fee42b6..d7a24c0 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -91,18 +91,14 @@ jobs: OUCH_ARTIFACTS_FOLDER: artifacts RUSTFLAGS: -C strip=symbols - - name: Upload binary + - name: Upload artifacts uses: actions/upload-artifact@v3 with: name: ouch-${{ matrix.target }}${{ matrix.ext }} - path: target/${{ matrix.target }}/release/ouch${{ matrix.ext }} + path: | + target/${{ matrix.target }}/release/ouch${{ matrix.ext }} + artifacts/ - - name: Upload artifacts (musl) - if: matrix.target == 'x86_64-unknown-linux-musl' - uses: actions/upload-artifact@v3 - with: - name: artifacts - path: artifacts clippy-rustfmt: name: clippy-rustfmt