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