builds ingest and uploads artifacts

This commit is contained in:
Christopher Lowenthal 2022-10-25 11:05:43 -04:00
parent 5b8cd108f8
commit 9bd9aa8069

View file

@ -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 }}