Skip to content

Commit

Permalink
✏️ docs: Fix ci build typo
Browse files Browse the repository at this point in the history
Signed-off-by: kokodev <[email protected]>
  • Loading branch information
kokofixcomputers committed Jan 2, 2025
1 parent 724c442 commit e5b010e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Build executable for Linux
run: |
pyinstaller --onefile --add-data "helpers/*;helpers" commitify.py
pyinstaller --onefile --add-data "helpers/*:helpers" commitify.py
- name: Move Linux executable
run: |
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Build executable for Windows
run: |
pyinstaller --onefile --add-data "helpers/*;helpers" commitify.py
pyinstaller --onefile --add-data "helpers/*:helpers" commitify.py
- name: Move Windows executable
run: |
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Build executable for macOS
run: |
pyinstaller --onefile --add-data "helpers/*;helpers" commitify.py
pyinstaller --onefile --add-data "helpers/*:helpers" commitify.py
- name: Move macOS executable
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Build executable for Linux
run: |
pyinstaller --onefile --add-data "helpers/*;helpers" commitify.py
pyinstaller --onefile --add-data "helpers/*:helpers" commitify.py
- name: Move Linux executable
run: |
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Build executable for Windows
run: |
pyinstaller --onefile --add-data "helpers/*;helpers" commitify.py
pyinstaller --onefile --add-data "helpers/*:helpers" commitify.py
- name: Move Windows executable
run: |
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Build executable for macOS
run: |
pyinstaller --onefile --add-data "helpers/*;helpers" --add-data "tools/*;tools" commitify.py
pyinstaller --onefile --add-data "helpers/*:helpers" commitify.py
- name: Move macOS executable
run: |
Expand Down

0 comments on commit e5b010e

Please sign in to comment.