mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix loop
This commit is contained in:
parent
ee11a8e3a0
commit
bbccbef578
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -161,7 +161,7 @@ jobs:
|
||||
# in both cases, if the release or tag already exists, add ".1" until it no longer exists.
|
||||
tagFound=true
|
||||
tagCount=1
|
||||
while [ $tagFound ]
|
||||
while [ "$tagFound" = true ]
|
||||
do
|
||||
if [ $(git tag -l "$releaseName") ]; then
|
||||
echo "Tag $releaseName exists already."
|
||||
|
Loading…
Reference in New Issue
Block a user