From e9f9d92989391b0f3d8747f6438dfc5c34ebe14c Mon Sep 17 00:00:00 2001 From: sabaimran Date: Tue, 6 Aug 2024 10:05:06 +0530 Subject: [PATCH] Try to manually copy the built files into where the src directory should be for the pypi build --- .github/workflows/pypi.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index eee8ee5b3..6e9a813cc 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -45,6 +45,11 @@ jobs: yarn pypiciexport working-directory: src/interface/web + - name: 📂 Copy Generated Files + run: | + mkdir -p src/khoj/interface/ + cp -r /opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/khoj/interface/built/* src/khoj/interface/built/ + - name: ⚙️ Build Python Package run: | # Setup Environment for Reproducible Builds