From 9bd9aa8069227b5dc9059b2a7ccc8ed14b6ac062 Mon Sep 17 00:00:00 2001 From: Christopher Lowenthal Date: Tue, 25 Oct 2022 11:05:43 -0400 Subject: [PATCH] builds ingest and uploads artifacts --- .github/workflows/release.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c6de7bda0..328472b9a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,5 +21,21 @@ jobs: with: go-version: "^1.19.1" - - name: build + - name: build featurebase run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o ./build/${{ matrix.goos }}-${{ matrix.goarch }} + + - uses: actions/upload-artifact@v3 + with: + name: featurebase-${{ matrix.goos }}-${{ matrix.goarch }} + path: ./build/${{ matrix.goos }}-${{ matrix.goarch }} + + - name: navigate to ingest + run: cd idk + + - name: build ingest + run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o ./build/${{ matrix.goos }}-${{ matrix.goarch }} + + - uses: actions/upload-artifact@v3 + with: + name: ingest-${{ matrix.goos }}-${{ matrix.goarch }} + path: ./build/${{ matrix.goos }}-${{ matrix.goarch }} \ No newline at end of file