mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 00:55:55 +00:00
adds basic job for bundling
This commit is contained in:
parent
53906c507a
commit
f6e8ee48bf
1 changed files with 20 additions and 1 deletions
21
.github/workflows/release.yml
vendored
21
.github/workflows/release.yml
vendored
|
|
@ -149,4 +149,23 @@ jobs:
|
|||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: consumers-${{ matrix.goos }}-${{ matrix.goarch }}
|
||||
path: ./build/consumer*
|
||||
path: ./build/consumer*
|
||||
|
||||
bundle:
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- meta
|
||||
- build-featurebase
|
||||
- build-lattice
|
||||
- build-ingest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
goos:
|
||||
- "darwin"
|
||||
- "linux"
|
||||
goarch:
|
||||
- "amd64"
|
||||
- "arm64"
|
||||
|
||||
steps:
|
||||
Loading…
Add table
Reference in a new issue