Skip to content

Commit

Permalink
Use different artifacts names
Browse files Browse the repository at this point in the history
  • Loading branch information
Virinas-code authored Oct 20, 2024
1 parent b27810a commit fcaa8aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Store target
uses: actions/upload-artifact@v4
with:
name: target
name: target-check
path: target

build:
Expand All @@ -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:
Expand All @@ -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

0 comments on commit fcaa8aa

Please sign in to comment.