From 8cb521f5fbb7e547921013552cd620f7d466b28b Mon Sep 17 00:00:00 2001 From: BushraS-Protean Date: Tue, 20 May 2025 16:33:47 +0530 Subject: [PATCH] Update build-and-deploy-plugins.yml --- .github/workflows/build-and-deploy-plugins.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build-and-deploy-plugins.yml b/.github/workflows/build-and-deploy-plugins.yml index 0870ff9..3b76121 100644 --- a/.github/workflows/build-and-deploy-plugins.yml +++ b/.github/workflows/build-and-deploy-plugins.yml @@ -77,6 +77,11 @@ jobs: ls -lh $PLUGIN_OUTPUT_DIR || echo "⚠️ Directory does not exist" find $PLUGIN_OUTPUT_DIR -name '*.so' || echo "⚠️ No .so files found" + echo "Creating zip archive..." + cd "$PLUGIN_OUTPUT_DIR" + zip -r "../$ZIP_FILE" *.so + echo "Created $ZIP_FILE" + cd .. - name: List zip output run: |