mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
moves shell script contents into workflow yml file
This commit is contained in:
parent
16a7487c5a
commit
faf327fcdc
1 changed files with 5 additions and 2 deletions
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
|
|
@ -17,8 +17,11 @@ jobs:
|
|||
- run: git pull --tags
|
||||
- run: git tag -l
|
||||
- run: git describe
|
||||
- run: .github/workflows/version.sh
|
||||
- run: echo "version=`.github/workflows/version.sh`" >> $GITHUB_OUTPUT
|
||||
- run: |
|
||||
current=$(git describe --tags | grep -Eo '[0-9]*?\.[0-9]*?\.[0-9]*')
|
||||
array=($(echo $current | tr '.' '\n'))
|
||||
array[2]=$((array[2]+1))
|
||||
echo $(IFS="." ; echo "${array[*]}")
|
||||
|
||||
build-lattice:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue