mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 00:55:55 +00:00
requires version for builds, implicitly runs 'sh' for version.sh
This commit is contained in:
parent
021455416c
commit
bdebe16f09
1 changed files with 6 additions and 2 deletions
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
|
|
@ -14,11 +14,12 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
- run: echo $(git describe --tags)
|
||||
- run: echo $(.github/workflows/version.sh)
|
||||
- run: echo "version=$(./github/workflows/version.sh)" >> $GITHUB_OUTPUT
|
||||
- run: echo $(sh .github/workflows/version.sh)
|
||||
- run: echo "version=$(sh ./github/workflows/version.sh)" >> $GITHUB_OUTPUT
|
||||
|
||||
build-lattice:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [version]
|
||||
env:
|
||||
CI: false
|
||||
|
||||
|
|
@ -45,6 +46,7 @@ jobs:
|
|||
|
||||
build-featurebase:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [version]
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
@ -83,6 +85,8 @@ jobs:
|
|||
|
||||
build-ingest:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [version]
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
goos:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue