From 657d4100af80debfa0dd1cdcf7d39ddac6dffdec Mon Sep 17 00:00:00 2001 From: ChoiseU Date: Tue, 19 Aug 2025 00:43:20 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20env=20=EC=B6=94=EA=B0=80=20=EB=B0=8F=20?= =?UTF-8?q?pyinsraller=EA=B0=80=20=EC=8B=A4=ED=96=89=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EB=A7=8C=EB=93=A4=20=EB=95=8C=20app=EC=9D=84=20=EC=9D=B8?= =?UTF-8?q?=EC=8B=9D=ED=95=98=EB=8F=84=EB=A1=9D=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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_release_and_notify.yml b/.github/workflows/build_release_and_notify.yml index 7870623..9de24af 100644 --- a/.github/workflows/build_release_and_notify.yml +++ b/.github/workflows/build_release_and_notify.yml @@ -77,7 +77,8 @@ jobs: shell: bash env: ENV_AES256_KEY: ${{ secrets.ENV_AES256_KEY }} - run: poetry run pyinstaller --clean --additional-hooks-dir ./hooks --add-data "app/assets:assets" --onefile --name ${{ env.EXE_NAME }} app/main.py + ENV_AI_SERVER_URL: ${{ secrets.ENV_AI_SERVER_URL }} + run: poetry run pyinstaller --clean --additional-hooks-dir ./hooks --add-data "app/assets:assets" --paths . --onefile --name ${{ env.EXE_NAME }} app/main.py # 7. 빌드된 실행 파일을 다음 단계(deploy)에서 사용할 수 있도록 아티팩트로 업로드합니다. - name: Upload artifact