Skip to content

Commit

Permalink
chore: Refactor build workflow to improve readability of pyinstaller …
Browse files Browse the repository at this point in the history
…command
  • Loading branch information
techtanic committed Nov 2, 2024
1 parent 2c97599 commit 19bfa11
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
run: pip install -r requirements.txt pyinstaller -U

- name: Build ${{ matrix.name }}
run: |
pyinstaller -y -F ${{ matrix.mode }} -i "${{ matrix.icon }}" --clean --name "${{ matrix.name }}" \
--add-data "base.py;." \
--add-data "colors.py;." \
--add-data "${{ matrix.settings }};." \
--add-data "README.md;." \
--add-data "LICENSE;." \
run: >
pyinstaller -y -F ${{ matrix.mode }} -i "${{ matrix.icon }}" --clean --name "${{ matrix.name }}"
--add-data "base.py;."
--add-data "colors.py;."
--add-data "${{ matrix.settings }};."
--add-data "README.md;."
--add-data "LICENSE;."
"${{ matrix.script }}"
- name: Upload ${{ matrix.name }}.exe
Expand Down

0 comments on commit 19bfa11

Please sign in to comment.