mirror of
https://github.com/ilyakooo0/reshape.git
synced 2024-11-22 17:26:33 +03:00
Fix incorrect output path in release pipeline
When using the --target flag, Cargo will output binaries to a different folder: target/{TARGET}/release/reshape.
This commit is contained in:
parent
64d05dad46
commit
3c977cb299
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
@ -58,7 +58,7 @@ jobs:
|
||||
args: --release --target ${{ matrix.target }}
|
||||
use-cross: ${{ matrix.use-cross }}
|
||||
- name: Rename binary
|
||||
run: mv target/release/reshape ./reshape-${{ matrix.file-name }}
|
||||
run: mv target/${{ matrix.target }}/release/reshape ./reshape-${{ matrix.file-name }}
|
||||
- name: Upload binary to release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
Loading…
Reference in New Issue
Block a user