From 5327f3931ecf1a19e28ecc7eaf6102823556e856 Mon Sep 17 00:00:00 2001 From: epi Date: Fri, 9 Oct 2020 16:35:50 -0500 Subject: [PATCH] add linux tar.gz build for homebrew installs --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a973b96..16ab9da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,7 +42,7 @@ jobs: command: build args: --release --target=${{ matrix.target }} - name: Build tar.gz for homebrew installs - if ${{ matrix.type }} == "ubuntu-x64": + 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 @@ -50,7 +50,7 @@ jobs: name: ${{ matrix.name }} path: ${{ matrix.path }} - uses: actions/upload-artifact@v2 - if ${{ matrix.type }} == "ubuntu-x64": + if: matrix.type == 'ubuntu-x64' with: name: ${{ matrix.name }} path: ${{ matrix.path }}