From ecdaf7c4b6efe0f0eb1c2e63ca12578bd0a4d8ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20David=20M=C3=BCller?= Date: Thu, 16 May 2024 15:56:39 +0200 Subject: [PATCH] only copy target binaries --- .github/workflows/build-windows-executable-app.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-windows-executable-app.yaml b/.github/workflows/build-windows-executable-app.yaml index c2ea6e09c..b9142c314 100644 --- a/.github/workflows/build-windows-executable-app.yaml +++ b/.github/workflows/build-windows-executable-app.yaml @@ -250,7 +250,10 @@ jobs: cp -r assets streamlit_exe cp -r example-data streamlit_exe cp -r .streamlit streamlit_exe - cp -r openms-bin streamlit_exe/bin + cp openms-bin/*.dll streamlit_exe + cp openms-bin/FLASHDeconv.exe streamlit_exe + cp openms-bin/FLASHTagger.exe streamlit_exe + cp openms-bin/DecoyDatabase.exe streamlit_exe cp -r share streamlit_exe/share cp -r js-dist streamlit_exe/js-dist cp app.py streamlit_exe