Updated Nmap job
This commit is contained in:
parent
31fc61d83f
commit
faa9a33e9d
1 changed files with 6 additions and 3 deletions
9
.github/workflows/build-nmap.yml
vendored
9
.github/workflows/build-nmap.yml
vendored
|
@ -132,17 +132,20 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
|
||||
- name: Prepare Environment
|
||||
run: mkdir /releases
|
||||
run: mkdir /tmp/releases
|
||||
|
||||
- name: Download Artifacts
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
path: /releases
|
||||
path: /tmp/releases
|
||||
|
||||
- name: List Artifacts
|
||||
run: ls -la /tmp/releases
|
||||
|
||||
- name: Create Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: /releases/*
|
||||
files: /tmp/releases/*
|
||||
name: Nmap v${{ needs.build-x86.outputs.PACKAGED_VERSION }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in a new issue