Skip to content

Commit aecbdc8

Browse files
committed
build: fix space
1 parent 41e3ccb commit aecbdc8

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
@@ -126,7 +126,7 @@ jobs:
126126
- name: Verify release commit is tagged
127127
run: |
128128
tag=$(git tag --points-at ${{ inputs.release_ref }})
129-
if [[ "$?" -ne 0]] || [[ -z "$tag" ]]; then
129+
if [[ "$?" -ne 0 ]] || [[ -z "$tag" ]]; then
130130
echo "::error:: Release ref does not point to any tag. Please tag the merge commit of the release PR and try again"
131131
exit 1
132132
else

0 commit comments

Comments
 (0)