From fcaa8aa2f1d793bc958d32212da2325f689fa1dc Mon Sep 17 00:00:00 2001 From: Virinas-code <61283052+Virinas-code@users.noreply.github.com> Date: Sun, 20 Oct 2024 02:28:29 +0200 Subject: [PATCH] Use different artifacts names --- .github/workflows/rust.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 89b0f85..f045bda 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -20,7 +20,7 @@ jobs: - name: Store target uses: actions/upload-artifact@v4 with: - name: target + name: target-check path: target build: @@ -33,13 +33,13 @@ jobs: - name: Download target uses: actions/download-artifact@v4 with: - name: target + name: target-check - name: Build run: cargo build --verbose - name: Store target uses: actions/upload-artifact@v4 with: - name: target + name: target-build path: target test: @@ -52,6 +52,6 @@ jobs: - name: Download target uses: actions/download-artifact@v4 with: - name: target + name: target-build - name: Test run: cargo test --verbose --bins --examples --tests --benches --all-targets --all-features