Skip to content

Commit 954879f

Browse files
committed
Fixed another syntax error in release.yml
1 parent d3b0f3d commit 954879f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
echo "BUILD_NUMBER=${BUILD_NUMBER}" >> $GITHUB_ENV
5151
# Verify if build number is unique, otherwise fail
5252
curl -s "https://quay.io/api/v1/repository/skupper/skupper-router/tag/?filter_tag_name=eq:${VERSION}-${BUILD_NUMBER}" | \
53-
| jq '.tags | map(select((.end_ts | length) == 0 or .end_ts == null))' | grep -E '^\[\]$' || \
53+
jq '.tags | map(select((.end_ts | length) == 0 or .end_ts == null))' | grep -E '^\[\]$' || \
5454
{ echo Unable to get a unique build number ; exit 1 ; }
5555
# Query github to see if this VERSION is the latest
5656
LATEST_RELEASE_TAG=`curl -s https://api.github.com/repos/skupperproject/skupper-router/releases/latest | jq -r ".tag_name"`

0 commit comments

Comments
 (0)