From 3344c18ef2d228b4347df2cf955a50636e349d55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Kaan=20G=C3=9CM=C3=9C=C5=9E?= <96421894+Tahinli@users.noreply.github.com> Date: Mon, 4 Mar 2024 01:28:44 +0300 Subject: [PATCH 1/2] chore: :see_no_evil: .vscode --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 196e176..32d71ea 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ # will have compiled files and executables debug/ target/ +.vscode/ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html From 782507e3d70b79660170ff82f02a5080a1550110 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Kaan=20G=C3=9CM=C3=9C=C5=9E?= <96421894+Tahinli@users.noreply.github.com> Date: Sat, 16 Mar 2024 01:44:14 +0300 Subject: [PATCH 2/2] build: :construction_worker: env --- .github/workflows/rust.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 58c0fab..b7da9e8 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -6,6 +6,7 @@ on: env: CARGO_TERM_COLOR: always + BINARY_NAME: rust_tcp_file_transfer jobs: build_linux: @@ -22,7 +23,7 @@ jobs: - name: Upload Linux Binary uses: actions/upload-artifact@v3 with: - name: rust_tcp_file_transfer_linux_x64_86 + name: $(BINARY_NAME)_linux_x64_86 path: target/release/*transfer build_windows: @@ -39,7 +40,7 @@ jobs: - name: Upload Windows Binary uses: actions/upload-artifact@v3 with: - name: rust_tcp_file_transfer_windows_x64_86 + name: $(BINARY_NAME)_windows_x64_86 path: target/release/*transfer.exe build_macos: @@ -56,7 +57,7 @@ jobs: - name: Upload MacOS Binary uses: actions/upload-artifact@v3 with: - name: rust_tcp_file_transfer_macos_x64_86 + name: $(BINARY_NAME)_macos_x64_86 path: target/release/*transfer release: