From 9137f8904af32ec1fabd38501069a9c7a6e60793 Mon Sep 17 00:00:00 2001 From: TheGuyDanish <5776313+TheGuyDanish@users.noreply.github.com> Date: Sat, 8 Jun 2024 20:39:44 +0200 Subject: [PATCH] More release fixes --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5df73b..b4b5a25 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,10 +23,7 @@ jobs: python-version: 3.11 - run: pip install pyinstaller - - run: pyinstaller --noconsole --onefile --distpath ./dist/${{ runner.os }} src/FarmUpload.py - #- uses: actions/upload-artifact@v4 - # with: - # path: dist/* + - run: pyinstaller -w -F --distpath ./dist/${{ runner.os }} -i src/icon.icns -n FarmUpload-${{ runner.os }} src/FarmUpload.py release: needs: build @@ -35,4 +32,7 @@ jobs: - uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: - files: dist/*/FarmUpload* + files: | + dist/Linux/FarmUpload-Linux + dist/Windows/FarmUpload-Windows.exe + dist/macOS/FarmUpload-macOS.app