We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd688f4 commit be705a0Copy full SHA for be705a0
.github/workflows/LinuxBuild.yml
@@ -75,7 +75,7 @@ jobs:
75
TAG_List=$(gh release list -R "$GITHUB_REPOSITORY" --json tagName | jq -r 'map(select(true))[] | (.tagName)')
76
TAG="${GITHUB_REF#refs/tags/}"
77
for i in $TAG_List; do
78
- if [[ "$i" = "$TAG"; then
+ if [ "$i" = "$TAG" ]; then
79
gh release delete "$TAG" -y
80
fi
81
done
0 commit comments