From ba1fff36f247a07a9060cb01e8d8e4bd6c6d2dd0 Mon Sep 17 00:00:00 2001 From: overcuriousity Date: Thu, 11 Dec 2025 23:09:04 +0100 Subject: [PATCH] rename binaries --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b6a96ae..19967a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,14 +27,14 @@ jobs: - name: Build Linux binary run: | - pyinstaller --onefile --name trace-linux main.py + pyinstaller --onefile --name trace main.py - name: Upload Linux binary to release uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - files: ./dist/trace-linux + files: ./dist/trace build-windows: runs-on: windows-latest @@ -55,11 +55,11 @@ jobs: - name: Build Windows executable run: | - pyinstaller --onefile --name trace-windows main.py + pyinstaller --onefile --name trace main.py - name: Upload Windows executable to release uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - files: ./dist/trace-windows.exe + files: ./dist/trace.exe