From 9ee02b0804cdf40ec4c50948c54415da182cac53 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Wed, 17 Aug 2022 23:04:26 +0300 Subject: [PATCH] Add --noconfirm in call to pyinstaller from Github release workflow Added just for safety, workflow works fine without it too --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0a672e37..3c22ecec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -51,7 +51,7 @@ jobs: export PYTHONHASHSEED=42 export SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct - pyinstaller Khoj.spec + pyinstaller --noconfirm Khoj.spec if [ "$RUNNER_OS" == "Windows" ]; then mv dist/Khoj.exe dist/khoj_"$GITHUB_REF_NAME"_amd64.exe fi