Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
unknownpersonog authored Aug 8, 2024
1 parent 9051181 commit a255c4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install nuitka
pip install pyinstaller
pip install PyQt5
pip install google-auth-oauthlib
pip install google-auth
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Build with Nuitka
run: |
nuitka3 --onefile --enable-plugin=pyqt5 main.py
pyinstaller --onefile main.py
- name: Create Release
id: create_release
Expand All @@ -68,7 +68,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./main.bin
asset_path: ./dist/main
asset_name: main_linux.bin
asset_content_type: application/octet-stream

Expand Down

0 comments on commit a255c4d

Please sign in to comment.