Skip to content

Commit

Permalink
fix(ci-rs.yml): change upload-artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
miniben-90 committed Aug 5, 2024
1 parent 92c1e0c commit d096f3d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci-rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ jobs:
- name: Clippy
run: cargo clippy -- -D warnings

- name: Build
run: cargo build --release --target ${{ matrix.settings.target }}

- name: Open finder to have an active window (MacOS)
if: ${{ matrix.settings.host == 'macos-latest' }}
run: open .
Expand All @@ -114,16 +111,17 @@ jobs:
if: ${{ matrix.settings.host != 'ubuntu-latest' }}
run: cargo test

- name: Build
run: cargo build --release --target ${{ matrix.settings.target }}

# Upload artifact for the next steps (test and publish)
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.settings.target }}
name: build-rs-${{ matrix.settings.host }}-${{ matrix.settings.target }}
path: ./target/${{ matrix.settings.target }}
if-no-files-found: error



publish:
defaults:
run:
Expand Down

0 comments on commit d096f3d

Please sign in to comment.