Skip to content

Commit

Permalink
More release fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGuyDanish committed Jun 8, 2024
1 parent f6ee314 commit 9137f89
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 9137f89

Please sign in to comment.