From 343487af9647a6993ca895db7e7633966f24b233 Mon Sep 17 00:00:00 2001 From: Michal <01187288@pw.edu.pl> Date: Sun, 14 Dec 2025 23:10:26 +0100 Subject: [PATCH] ci: fixed prepare client dir stage --- .github/workflows/integration-tests.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 65ac660..ad635d3 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -221,11 +221,18 @@ jobs: mkdir python_release cp -r python/* python_release/ - grep "version =" python_release/pyproject.toml + mkdir -p python_release/.github/workflows + + cp .github/workflows/publish.yml python_release/.github/workflows/ + + if [ -f "LICENSE" ]; then + cp LICENSE python_release/ + fi rm -rf python_release/tests find python_release -type d -name "__pycache__" -exec rm -rf {} + rm -rf python_release/.venv + rm -rf python_release/uv.lock ls -R python_release/teams_lib_pzsp2_z1/bin