From e77f291e72b2003184ccf7887bdd60fed9aebde5 Mon Sep 17 00:00:00 2001 From: ko1N Date: Mon, 15 Mar 2021 22:41:19 +0100 Subject: [PATCH] Added zip generation for artifacts --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b72b7a9..0e18642 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,18 +55,22 @@ jobs: - uses: actions/download-artifact@v2 with: name: library-ubuntu + - name: Create archive for linux x86-64 + run: zip memflow_pcileech_linux_x86-64.zip *.so - name: Upload ubuntu artifacts uses: skx/github-action-publish-binaries@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - args: '*.so' + args: 'memflow_pcileech_linux_x86-64.zip' - uses: actions/download-artifact@v2 with: name: library-windows + - name: Create archive for windows x86-64 + run: zip memflow_pcileech_windows_x86-64.zip *.dll - name: Upload windows artifacts uses: skx/github-action-publish-binaries@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - args: '*.dll' + args: 'memflow_pcileech_windows_x86-64.zip'