add linux tar.gz build for homebrew installs

This commit is contained in:
epi
2020-10-09 16:28:13 -05:00
parent db0e56bee2
commit 4cf8f030de

View File

@@ -41,10 +41,19 @@ jobs:
use-cross: true
command: build
args: --release --target=${{ matrix.target }}
- name: Build tar.gz for homebrew installs
if ${{ matrix.type }} == "ubuntu-x64":
run: |
tar czf ${{ matrix.name }}.tar.gz -C target/x86_64-unknown-linux-musl/release feroxbuster
- uses: actions/upload-artifact@v2
with:
name: ${{ matrix.name }}
path: ${{ matrix.path }}
- uses: actions/upload-artifact@v2
if ${{ matrix.type }} == "ubuntu-x64":
with:
name: ${{ matrix.name }}
path: ${{ matrix.path }}
build-deb:
needs: [build-nix]