From 230155ec5176187cc06b5db9250b4c4332b376ab Mon Sep 17 00:00:00 2001 From: Ragnar Paulson Date: Thu, 2 May 2024 09:31:02 -0400 Subject: [PATCH] Clean up windows zip file. Only add smf plugin to zip file instead of the entire plugin directory. --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9a79617..0712c12 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -99,10 +99,10 @@ jobs: # This means that the artifact is double-zipped as a result - name: Create Zip working-directory: ${{ github.workspace }}/build/run/RelWithDebInfo/plugins - run: Compress-Archive ./* -Destination ${{ github.workspace }}\${{ env.PLUGIN_NAME }} + run: Compress-Archive ./*/epan/smf.* -Destination ${{ github.workspace }}\${{ env.PLUGIN_NAME }} - name: Upload Artifacts uses: actions/upload-artifact@v4 with: name: ${{ env.PLUGIN_NAME }} - path: ${{ github.workspace }}/${{ env.PLUGIN_NAME }} \ No newline at end of file + path: ${{ github.workspace }}/${{ env.PLUGIN_NAME }}