From de2bb563da9a16094b9e894705da54196f3e8fd5 Mon Sep 17 00:00:00 2001 From: Dogukan Karatas Date: Thu, 9 Jan 2025 14:33:42 +0100 Subject: [PATCH] zip the artifacts --- .github/workflows/build_powerbi.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_powerbi.yml b/.github/workflows/build_powerbi.yml index fbedaf1..d46cee7 100644 --- a/.github/workflows/build_powerbi.yml +++ b/.github/workflows/build_powerbi.yml @@ -93,11 +93,14 @@ jobs: with: name: powerbi-visual path: artifacts/ + - name: Zip artifacts + run: | + Compress-Archive -Path artifacts/* -DestinationPath powerbi.zip -Force - name: upload artifacts uses: actions/upload-artifact@v4 with: name: output-${{needs.build-connector.outputs.semver}} - path: artifacts/* + path: powerbi.zip - name: 🔫 Trigger Build Installers uses: ALEEF02/workflow-dispatch@v3.0.0 with: