Updated Nmap job
This commit is contained in:
parent
a94e52ae86
commit
31fc61d83f
1 changed files with 4 additions and 3 deletions
7
.github/workflows/build-nmap.yml
vendored
7
.github/workflows/build-nmap.yml
vendored
|
@ -126,22 +126,23 @@ jobs:
|
|||
create-release:
|
||||
name: Create Nmap Release
|
||||
runs-on: ubuntu-latest
|
||||
needs: [build-x86, build-x86_64, build-armhf, build-aarch64]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Prepare Environment
|
||||
run: mkdir /data
|
||||
run: mkdir /releases
|
||||
|
||||
- name: Download Artifacts
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
path: /data
|
||||
path: /releases
|
||||
|
||||
- name: Create Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: /data/*
|
||||
files: /releases/*
|
||||
name: Nmap v${{ needs.build-x86.outputs.PACKAGED_VERSION }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in a new issue