From 89f1f0da6e84e04d2b26932a44ea85b36743ccd4 Mon Sep 17 00:00:00 2001 From: Elkana Molson <57934787+elkanamol@users.noreply.github.com> Date: Sun, 1 Sep 2024 11:37:44 +0300 Subject: [PATCH] Update Build_Executable.yml update pyinstaller cmd --- .github/workflows/Build_Executable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Build_Executable.yml b/.github/workflows/Build_Executable.yml index 06e77ca..f1dfce3 100644 --- a/.github/workflows/Build_Executable.yml +++ b/.github/workflows/Build_Executable.yml @@ -32,7 +32,7 @@ jobs: - name: Compile executable # working-directory: # again, app directory here or skip if root - run: --onefile --name sierra-status --hidden-import=serial --hidden-import=argparse --hidden-import==importlib.metadata --clean .\sierra_status\src\cli.py #or whatever your main file is named + run: pyinstaller --onefile --name sierra-status --hidden-import=serial --hidden-import=argparse --hidden-import==importlib.metadata --clean .\sierra_status\src\cli.py #or whatever your main file is named - name: Release uses: softprops/action-gh-release@v2