mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
builds ingest and uploads artifacts
This commit is contained in:
parent
5b8cd108f8
commit
9bd9aa8069
1 changed files with 17 additions and 1 deletions
18
.github/workflows/release.yml
vendored
18
.github/workflows/release.yml
vendored
|
|
@ -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 }}
|
||||
Loading…
Add table
Reference in a new issue