From 22cc8a25562bb2a87a825efd7db00801c7f3b102 Mon Sep 17 00:00:00 2001 From: Christopher Lowenthal Date: Tue, 25 Oct 2022 11:26:14 -0400 Subject: [PATCH] uses makefile --- .github/workflows/release.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 84eabe2f2..75f2c3bca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,12 +22,12 @@ jobs: go-version: "^1.19.1" - name: build featurebase - run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o ./build/featurebase-${{ matrix.goos }}-${{ matrix.goarch }} + run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} make release-build - - uses: actions/upload-artifact@v3 - with: - 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-${{ matrix.goos }}-${{ matrix.goarch }} build-ingest: runs-on: ubuntu-latest @@ -51,9 +51,9 @@ jobs: run: cd idk - name: build ingest - run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o ./build/ingest-${{ matrix.goos }}-${{ matrix.goarch }} + run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} make release-build - - uses: actions/upload-artifact@v3 - with: - name: ingest-${{ matrix.goos }}-${{ matrix.goarch }} - path: ./build/ingest-${{ matrix.goos }}-${{ matrix.goarch }} \ No newline at end of file + # - uses: actions/upload-artifact@v3 + # with: + # name: ingest-${{ matrix.goos }}-${{ matrix.goarch }} + # path: ./build/ingest-${{ matrix.goos }}-${{ matrix.goarch }} \ No newline at end of file