featurebase/.github/workflows/release.yml
Christopher Lowenthal 22cc8a2556 uses makefile
2022-10-25 11:26:14 -04:00

59 lines
No EOL
1.3 KiB
YAML

name: Release
on: workflow_dispatch
jobs:
build-featurebase:
runs-on: ubuntu-latest
strategy:
matrix:
goos:
- "darwin"
- "linux"
goarch:
- "amd64"
- "arm64"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "^1.19.1"
- name: build featurebase
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} make release-build
# - uses: actions/upload-artifact@v3
# with:
# name: featurebase-${{ matrix.goos }}-${{ matrix.goarch }}
# path: ./build/featurebase-${{ matrix.goos }}-${{ matrix.goarch }}
build-ingest:
runs-on: ubuntu-latest
strategy:
matrix:
goos:
- "darwin"
- "linux"
goarch:
- "amd64"
- "arm64"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "^1.19.1"
- name: navigate to ingest
run: cd idk
- name: build ingest
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} make release-build
# - uses: actions/upload-artifact@v3
# with:
# name: ingest-${{ matrix.goos }}-${{ matrix.goarch }}
# path: ./build/ingest-${{ matrix.goos }}-${{ matrix.goarch }}