Skip to content

Commit

Permalink
Just do this.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kraust committed Mar 15, 2024
1 parent f352d78 commit 4528ec6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
python-version: "3.10"

- run: pip install .
# - run: python -m nuitka --standalone --enable-plugin=pyside6 --onefile --output-filename=OSCR --output-dir=dist main.py --disable-console --assume-yes-for-downloads --noinclude-qt-translations --include-data-files=./assets/*=./assets/ --windows-icon-from-ico=./assets/oscr_icon_small.ico --clang
- run: pyside6-deploy main.py --name OSCR -f -- --assume-yes-for-downloads
- run: pip install nuitka==2.0.4
- run: python -m nuitka --standalone --enable-plugin=pyside6 --output-filename=OSCR --output-dir=dist main.py --disable-console --assume-yes-for-downloads --noinclude-qt-translations --include-data-files=./assets/*=./assets/ --windows-icon-from-ico=./assets/oscr_icon_small.ico
- uses: actions/upload-artifact@v2
with:
name: build_binary
path: deployment/*
path: dist/*

release:
if: startsWith(github.ref, 'refs/tags/v')
Expand All @@ -42,4 +42,4 @@ jobs:
- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: deployment/*
artifacts: dist/*

0 comments on commit 4528ec6

Please sign in to comment.