From 7d75a2cfd4c3986b771ff1ff5b439d49af438a92 Mon Sep 17 00:00:00 2001 From: epi Date: Thu, 8 Oct 2020 06:28:59 -0500 Subject: [PATCH] added tar.gz for homebrew installs --- .github/workflows/build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f0b383..1bbcc8a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -93,7 +93,16 @@ jobs: use-cross: true command: build args: --release --target=${{ matrix.target }} + - name: Build tar.gz for homebrew installs + if: ${{ matrix.type }} == macos + run: | + tar cjf ${{ matrix.name}}.tar.gz ${{ matrix.path }} - uses: actions/upload-artifact@v2 with: name: ${{ matrix.name }} path: ${{ matrix.path }} + - uses: actions/upload-artifact@v2 + if: ${{ matrix.type }} == macos + with: + name: ${{ matrix.name}}.tar.gz + path: ${{ matrix.name}}.tar.gz