diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 76a04fa..c62fa20 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: | @@ -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: | @@ -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: | diff --git a/.github/workflows/pre-release.yaml b/.github/workflows/pre-release.yaml index 20cc1a5..4f32f1e 100644 --- a/.github/workflows/pre-release.yaml +++ b/.github/workflows/pre-release.yaml @@ -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: | @@ -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: | @@ -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: |