|
|
@ -55,18 +55,22 @@ jobs:
|
|
|
|
- uses: actions/download-artifact@v2
|
|
|
|
- uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
name: library-ubuntu
|
|
|
|
name: library-ubuntu
|
|
|
|
|
|
|
|
- name: Create archive for linux x86-64
|
|
|
|
|
|
|
|
run: zip memflow_pcileech_linux_x86-64.zip *.so
|
|
|
|
- name: Upload ubuntu artifacts
|
|
|
|
- name: Upload ubuntu artifacts
|
|
|
|
uses: skx/github-action-publish-binaries@master
|
|
|
|
uses: skx/github-action-publish-binaries@master
|
|
|
|
env:
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
args: '*.so'
|
|
|
|
args: 'memflow_pcileech_linux_x86-64.zip'
|
|
|
|
- uses: actions/download-artifact@v2
|
|
|
|
- uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
name: library-windows
|
|
|
|
name: library-windows
|
|
|
|
|
|
|
|
- name: Create archive for windows x86-64
|
|
|
|
|
|
|
|
run: zip memflow_pcileech_windows_x86-64.zip *.dll
|
|
|
|
- name: Upload windows artifacts
|
|
|
|
- name: Upload windows artifacts
|
|
|
|
uses: skx/github-action-publish-binaries@master
|
|
|
|
uses: skx/github-action-publish-binaries@master
|
|
|
|
env:
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
args: '*.dll'
|
|
|
|
args: 'memflow_pcileech_windows_x86-64.zip'
|
|
|
|