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'