ci: fix artifacts

This commit is contained in:
Flat 2023-11-26 16:03:37 -05:00 committed by João Marcos
parent 83b1131fda
commit 29791461f4

View File

@ -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