From 3bdc49da0478fc11cc5e61d6c325406dd9e986b2 Mon Sep 17 00:00:00 2001 From: Christopher Lowenthal Date: Mon, 7 Nov 2022 10:28:53 -0500 Subject: [PATCH] gzips artifacts, uploads .tar.gz with version --- .github/workflows/release.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 714d1bff2..313691bc1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -172,18 +172,33 @@ jobs: - uses: actions/download-artifact@v3 with: name: featurebase-${{ matrix.goos }}-${{ matrix.goarch }} + path: artifacts/ - uses: actions/download-artifact@v3 with: name: roaring-migrate-${{ matrix.goos }}-${{ matrix.goarch }} + path: artifacts/ - uses: actions/download-artifact@v3 with: name: ingester-${{ matrix.goos }}-${{ matrix.goarch }} + path: artifacts/ - uses: actions/download-artifact@v3 with: name: consumers-${{ matrix.goos }}-${{ matrix.goarch }} + path: artifacts/ - - run: ls -alt - \ No newline at end of file + - uses: actions/download-artifact@v3 + with: + name: lattice.tar.gz + path: artifacts/ + + - run: ls -alt artifacts/ + + - run: tar -cvzf featurebase-${{needs.meta.outputs.version}}.tar.gz artifacts/* + + - uses: actions/upload-artifact@v3 + with: + name: featurebase-${{needs.meta.outputs.version}}.tar.gz + path: featurebase-${{needs.meta.outputs.version}}.tar.gz \ No newline at end of file