From a9b77d8b00cc464f6cdf377f07e0deb32c198fbd Mon Sep 17 00:00:00 2001 From: ChoiseU Date: Fri, 18 Jul 2025 21:27:06 +0900 Subject: [PATCH 1/4] =?UTF-8?q?fix:=20=ED=8F=B4=EB=8D=94=20=EA=B2=BD?= =?UTF-8?q?=EB=A1=9C=20=EC=B0=BE=EC=A7=80=EB=AA=BB=ED=95=98=EB=8A=94=20?= =?UTF-8?q?=EC=83=81=ED=99=A9=EC=9C=BC=EB=A1=9C=20=EC=9D=B8=ED=95=9C=20kee?= =?UTF-8?q?p=20=ED=8C=8C=EC=9D=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/assets/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 app/assets/.gitkeep diff --git a/app/assets/.gitkeep b/app/assets/.gitkeep new file mode 100644 index 0000000..e69de29 From 4e3b47cbd01000bc2a6dc91507f81757cdca94b2 Mon Sep 17 00:00:00 2001 From: ChoiseU Date: Fri, 18 Jul 2025 21:34:59 +0900 Subject: [PATCH 2/4] =?UTF-8?q?fix:=20=EB=AA=85=EB=A0=B9=EC=96=B4=20?= =?UTF-8?q?=ED=95=B4=EC=84=9D=EA=B8=B0=EA=B0=80=20=EB=8B=AC=EB=9D=BC=20win?= =?UTF-8?q?dows=EC=97=90=EC=84=9C=20=EC=97=90=EB=9F=AC=20=EB=82=98?= =?UTF-8?q?=EB=8D=98=EA=B1=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_release_and_notify.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_release_and_notify.yml b/.github/workflows/build_release_and_notify.yml index 25ace87..b4225ed 100644 --- a/.github/workflows/build_release_and_notify.yml +++ b/.github/workflows/build_release_and_notify.yml @@ -74,6 +74,7 @@ jobs: # 6. PyInstaller를 사용해 파이썬 코드를 실행 파일로 만듭니다. - name: Build executable with PyInstaller + shell: bash run: | poetry run pyinstaller \ --clean \ From 04d1a65c93a7d740ebf52ed97807de42ddac8a76 Mon Sep 17 00:00:00 2001 From: ChoiseU Date: Fri, 18 Jul 2025 23:34:13 +0900 Subject: [PATCH 3/4] =?UTF-8?q?fix:=20=EB=AA=85=EB=A0=B9=EC=96=B4=20?= =?UTF-8?q?=ED=95=B4=EC=84=9D=EA=B8=B0=EA=B0=80=20=EB=8B=AC=EB=9D=BC=20win?= =?UTF-8?q?dows=EC=97=90=EC=84=9C=20=EC=97=90=EB=9F=AC=20=EB=82=98?= =?UTF-8?q?=EB=8D=98=EA=B1=B0=20=EC=88=98=EC=A0=95=20=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_release_and_notify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_release_and_notify.yml b/.github/workflows/build_release_and_notify.yml index b4225ed..5aced44 100644 --- a/.github/workflows/build_release_and_notify.yml +++ b/.github/workflows/build_release_and_notify.yml @@ -81,7 +81,7 @@ jobs: --additional-hooks-dir ./hooks \ --add-data "app/assets:assets" \ --onefile \ - --name qgenie-api \ + --name ${{ env.EXE_NAME }} \ app/main.py # 7. 빌드된 실행 파일을 다음 단계(deploy)에서 사용할 수 있도록 아티팩트로 업로드합니다. From 876b8f3b25dd03ee3c9f67197ebf4f1aa0311fa2 Mon Sep 17 00:00:00 2001 From: ChoiseU Date: Fri, 18 Jul 2025 23:43:48 +0900 Subject: [PATCH 4/4] =?UTF-8?q?fix:=20=EB=AA=85=EB=A0=B9=EC=96=B4=20?= =?UTF-8?q?=ED=95=B4=EC=84=9D=EA=B8=B0=EA=B0=80=20\=20=EC=9D=B8=EC=8B=9D?= =?UTF-8?q?=20=EB=AA=BB=20=ED=95=98=EB=8D=98=EA=B1=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_release_and_notify.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/build_release_and_notify.yml b/.github/workflows/build_release_and_notify.yml index 5aced44..9bc43ac 100644 --- a/.github/workflows/build_release_and_notify.yml +++ b/.github/workflows/build_release_and_notify.yml @@ -75,14 +75,7 @@ jobs: # 6. PyInstaller를 사용해 파이썬 코드를 실행 파일로 만듭니다. - name: Build executable with PyInstaller shell: bash - run: | - poetry run pyinstaller \ - --clean \ - --additional-hooks-dir ./hooks \ - --add-data "app/assets:assets" \ - --onefile \ - --name ${{ env.EXE_NAME }} \ - app/main.py + run: poetry run pyinstaller --clean --additional-hooks-dir ./hooks --add-data "app/assets:assets" --onefile --name ${{ env.EXE_NAME }} app/main.py # 7. 빌드된 실행 파일을 다음 단계(deploy)에서 사용할 수 있도록 아티팩트로 업로드합니다. - name: Upload artifact