From 5af751a9b20dcf977ab65206103989db843a903f Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Fri, 1 Aug 2025 02:49:00 +0400 Subject: [PATCH] build: remove extension for nodecar --- .github/workflows/release.yml | 2 +- .github/workflows/rolling-release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 49a2829..e0832f4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -149,7 +149,7 @@ jobs: run: | mkdir -p src-tauri/binaries if [[ "${{ matrix.platform }}" == "windows-latest" ]]; then - cp nodecar/nodecar-bin.exe src-tauri/binaries/nodecar-${{ matrix.target }}.exe + cp nodecar/nodecar-bin src-tauri/binaries/nodecar-${{ matrix.target }}.exe else cp nodecar/nodecar-bin src-tauri/binaries/nodecar-${{ matrix.target }} fi diff --git a/.github/workflows/rolling-release.yml b/.github/workflows/rolling-release.yml index 37b04e6..b046b12 100644 --- a/.github/workflows/rolling-release.yml +++ b/.github/workflows/rolling-release.yml @@ -148,7 +148,7 @@ jobs: run: | mkdir -p src-tauri/binaries if [[ "${{ matrix.platform }}" == "windows-latest" ]]; then - cp nodecar/nodecar-bin.exe src-tauri/binaries/nodecar-${{ matrix.target }}.exe + cp nodecar/nodecar-bin src-tauri/binaries/nodecar-${{ matrix.target }}.exe else cp nodecar/nodecar-bin src-tauri/binaries/nodecar-${{ matrix.target }} fi