From 6851d4deaa1d026d02f7ccb274bc615dac154557 Mon Sep 17 00:00:00 2001 From: Christopher Lowenthal Date: Mon, 7 Nov 2022 09:42:54 -0500 Subject: [PATCH] downloads artifacts to be bundled --- .github/workflows/release.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e6901ad0..714d1bff2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -168,4 +168,22 @@ jobs: - "amd64" - "arm64" - steps: \ No newline at end of file + steps: + - uses: actions/download-artifact@v3 + with: + name: featurebase-${{ matrix.goos }}-${{ matrix.goarch }} + + - uses: actions/download-artifact@v3 + with: + name: roaring-migrate-${{ matrix.goos }}-${{ matrix.goarch }} + + - uses: actions/download-artifact@v3 + with: + name: ingester-${{ matrix.goos }}-${{ matrix.goarch }} + + - uses: actions/download-artifact@v3 + with: + name: consumers-${{ matrix.goos }}-${{ matrix.goarch }} + + - run: ls -alt + \ No newline at end of file