From a606e67cf4179f36ae3a5c43b64036a274ea50a3 Mon Sep 17 00:00:00 2001 From: Christopher Lowenthal Date: Mon, 31 Oct 2022 13:29:27 -0400 Subject: [PATCH] wip: adds make version of build --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a701cfe99..824b299e0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,6 +73,7 @@ jobs: - name: build featurebase run: | + make build FLAGS="-o ./build/featurebase-from-make-${{ matrix.goos }}-${{ matrix.goarch }}" ./cmd/featurebase go build -o ./build/featurebase-${{ matrix.goos }}-${{ matrix.goarch }} ./cmd/featurebase go build -o ./build/roaring-migrate-${{ matrix.goos }}-${{ matrix.goarch }} ./cmd/roaring-migrate @@ -81,6 +82,11 @@ jobs: name: featurebase-${{ matrix.goos }}-${{ matrix.goarch }} path: ./build/featurebase-${{ matrix.goos }}-${{ matrix.goarch }} + - uses: actions/upload-artifact@v3 + with: + name: featurebase-${{ matrix.goos }}-${{ matrix.goarch }} + path: ./build/featurebase-from-make-${{ matrix.goos }}-${{ matrix.goarch }} + - uses: actions/upload-artifact@v3 with: name: roaring-migrate-${{ matrix.goos }}-${{ matrix.goarch }}