rename binaries

This commit is contained in:
overcuriousity
2025-12-11 23:09:04 +01:00
parent e37597c315
commit ba1fff36f2

View File

@@ -27,14 +27,14 @@ jobs:
- name: Build Linux binary - name: Build Linux binary
run: | run: |
pyinstaller --onefile --name trace-linux main.py pyinstaller --onefile --name trace main.py
- name: Upload Linux binary to release - name: Upload Linux binary to release
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
files: ./dist/trace-linux files: ./dist/trace
build-windows: build-windows:
runs-on: windows-latest runs-on: windows-latest
@@ -55,11 +55,11 @@ jobs:
- name: Build Windows executable - name: Build Windows executable
run: | run: |
pyinstaller --onefile --name trace-windows main.py pyinstaller --onefile --name trace main.py
- name: Upload Windows executable to release - name: Upload Windows executable to release
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
files: ./dist/trace-windows.exe files: ./dist/trace.exe