Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Luni-4 committed Sep 20, 2023
1 parent 0e4a818 commit c8d04a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/third-party-applications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Get total coverage
run: |
grcov . --binary-path ./target/debug/ -s . -t covdir --branch \
grcov . --binary-path ./${{ matrix.name }}/target/debug/ -s . -t covdir --branch \
--token YOUR_COVDIR_TOKEN --ignore-not-existing --ignore "/*" \
--ignore "../*" -o covdir.json
Expand All @@ -86,7 +86,7 @@ jobs:
cross clean --manifest-path ${{ matrix.name }}/Cargo.toml
cross build --manifest-path ${{ matrix.name }}/Cargo.toml --release --target x86_64-unknown-linux-musl
mkdir -p x86_64-unknown-linux-musl
cp target/x86_64-unknown-linux-musl/release/${{ matrix.name }} x86_64-unknown-linux-musl/
cp ${{ matrix.name}}/target/x86_64-unknown-linux-musl/release/${{ matrix.name }} x86_64-unknown-linux-musl/
- name: Produce manifest
id: manifest
Expand All @@ -105,7 +105,7 @@ jobs:
cross clean --manifest-path ${{ matrix.name }}/Cargo.toml
cross build --manifest-path ${{ matrix.name }}/Cargo.toml --release --target aarch64-unknown-linux-musl
mkdir -p aarch64-unknown-linux-musl
cp target/aarch64-unknown-linux-musl/release/${{ matrix.name }} aarch64-unknown-linux-musl/
cp ${{ matrix.name}}/target/aarch64-unknown-linux-musl/release/${{ matrix.name }} aarch64-unknown-linux-musl/
- name: Get tag
id: tag
Expand Down

0 comments on commit c8d04a9

Please sign in to comment.