Skip to content

Commit

Permalink
replaced pyinstaller with build
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdy committed Apr 15, 2024
1 parent 613ad0f commit ca333a4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/packaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
with:
python-version: "3.11"

- name: Install pip requirements and pyinstaller
run: pip install -r requirements.txt pyinstaller
- name: Install pip requirements and build
run: pip install -r requirements.txt build

- name: Build binary
run: pyinstaller -F -n vidscaler vidscaler/__main__.py
- name: Build project
run: python -m build

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/vidscaler
files: dist/*

0 comments on commit ca333a4

Please sign in to comment.