Skip to content

Commit be705a0

Browse files
committed
Fix: Bug in if [[ "$i" = "$TAG"; then
Signed-off-by: Günter Neiß <gneiss@web.de>
1 parent fd688f4 commit be705a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/LinuxBuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
TAG_List=$(gh release list -R "$GITHUB_REPOSITORY" --json tagName | jq -r 'map(select(true))[] | (.tagName)')
7676
TAG="${GITHUB_REF#refs/tags/}"
7777
for i in $TAG_List; do
78-
if [[ "$i" = "$TAG"; then
78+
if [ "$i" = "$TAG" ]; then
7979
gh release delete "$TAG" -y
8080
fi
8181
done

0 commit comments

Comments
 (0)