Skip to content

Commit

Permalink
[Updated] Fixed workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JanGalek committed Dec 13, 2024
1 parent b0ef769 commit b4c7593
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,13 @@ jobs:
# Získání aktuálního tagu
CURRENT_TAG=$(git describe --tags --abbrev=0 HEAD)
# Kontrola, zda je aktuální tag stabilní (neobsahuje -beta, -rc apod.)
if [[ "$CURRENT_TAG" =~ -(beta|rc) ]]; then
# Pro beta/rc verze najdi předchozí libovolný tag
PREV_TAG=$(git describe --tags --abbrev=0 HEAD^)
else
# Pro stabilní verze najdi poslední stabilní tag (ignoruj beta/rc tagy)
# Pokud je aktuální tag stabilní (neobsahuje -beta, -rc apod.)
if [[ ! "$CURRENT_TAG" =~ -(beta|rc) ]]; then
# Najdi poslední stabilní tag (ignoruj beta/rc tagy)
PREV_TAG=$(git tag --sort=-creatordate | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$' | grep -Ev '-(beta|rc)' | head -n 1)
else
# Pokud jde o beta/rc verzi, najdi předchozí libovolný tag
PREV_TAG=$(git describe --tags --abbrev=0 HEAD^)
fi
# Pokud nebyl nalezen žádný předchozí tag, použij počáteční commit
Expand Down

0 comments on commit b4c7593

Please sign in to comment.