mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Unable to use git for tags
This commit is contained in:
parent
3fed6a944e
commit
a38952fbd4
1 changed files with 6 additions and 5 deletions
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
|
@ -579,13 +579,14 @@ jobs:
|
|||
run: |
|
||||
langs=( en ru )
|
||||
devver=( dev )
|
||||
# Query git for tagged releases, all releases start with "v"
|
||||
# followed by MAJOR.MINOR.PATCH, see semver.org
|
||||
# Then remove all pre-releases/tags with hyphens (-).
|
||||
# The latest release is last, finally trim "v" and PATCH
|
||||
stable=$(git tag | grep "^v" | grep -v "-" | tail -n 1 | cut -c2-4)
|
||||
# The latest stable must be the first element in the array
|
||||
vers=( 0.5.x 0.4.x )
|
||||
|
||||
# All releases start with "v"
|
||||
# followed by MAJOR.MINOR.PATCH, see semver.org
|
||||
# Retain MAJOR.MINOR as $stable
|
||||
stable=${vers%.*}
|
||||
|
||||
echo "Stable version: $stable"
|
||||
|
||||
# Create directories
|
||||
|
|
Loading…
Reference in a new issue