Skip to content

Commit e77f291

Browse files
committed
Added zip generation for artifacts
1 parent a09c544 commit e77f291

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,22 @@ jobs:
5555
- uses: actions/download-artifact@v2
5656
with:
5757
name: library-ubuntu
58+
- name: Create archive for linux x86-64
59+
run: zip memflow_pcileech_linux_x86-64.zip *.so
5860
- name: Upload ubuntu artifacts
5961
uses: skx/github-action-publish-binaries@master
6062
env:
6163
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6264
with:
63-
args: '*.so'
65+
args: 'memflow_pcileech_linux_x86-64.zip'
6466
- uses: actions/download-artifact@v2
6567
with:
6668
name: library-windows
69+
- name: Create archive for windows x86-64
70+
run: zip memflow_pcileech_windows_x86-64.zip *.dll
6771
- name: Upload windows artifacts
6872
uses: skx/github-action-publish-binaries@master
6973
env:
7074
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7175
with:
72-
args: '*.dll'
76+
args: 'memflow_pcileech_windows_x86-64.zip'

0 commit comments

Comments
 (0)