Skip to content

Commit

Permalink
Changed build method to reduce memory usage
Browse files Browse the repository at this point in the history
  • Loading branch information
albaintor committed Jul 24, 2024
1 parent d6fe841 commit 091478d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
bash -c \
"cd /workspace && \
python -m pip install -r requirements.txt && \
pyinstaller --clean --onefile --name driver intg-kodi/driver.py"
pyinstaller --clean --onedir --name driver intg-kodi/driver.py"
- name: Add version
run: |
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Prepare artifacts
shell: bash
run: |
cp dist/driver artifacts/bin
cp -r dist/driver/* artifacts/bin
cp driver.json artifacts/
cp kodi.png artifacts/
echo "ARTIFACT_NAME=uc-intg-${{ env.INTG_NAME }}-${{ env.VERSION }}-aarch64" >> $GITHUB_ENV
Expand Down

0 comments on commit 091478d

Please sign in to comment.