diff --git a/.github/workflows/rust_build_test.yml b/.github/workflows/rust_build_test.yml index 68a2787..d964303 100644 --- a/.github/workflows/rust_build_test.yml +++ b/.github/workflows/rust_build_test.yml @@ -25,7 +25,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: rust_tcp_file_transfer_linux_x64_86 - path: target/release/rust_tcp_file_transfer + path: ./target/release/rust_tcp_file_transfer build_windows: @@ -41,8 +41,8 @@ jobs: - name: Upload Windows Binary uses: actions/upload-artifact@v3 with: - name: rust_tcp_file_transfer_windows_x64_86.exe - path: target/release/*.exe + name: rust_tcp_file_transfer_windows_x64_86 + path: ./target/release/rust_tcp_file_transfer.exe build_macos: @@ -59,4 +59,4 @@ jobs: uses: actions/upload-artifact@v3 with: name: rust_tcp_file_transfer_macos_x64_86 - path: target/release/rust_tcp_file_transfer + path: ./target/release/rust_tcp_file_transfer