Skip to content

Commit f629bbf

Browse files
committed
fix(ci): update is_stable code
1 parent 90bf23f commit f629bbf

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
@@ -77,7 +77,7 @@ jobs:
7777
- name: Publish packages
7878
run: |
7979
VERSION="${{ steps.tag_version.outputs.version }}"
80-
IS_STABLE=$(echo "$VERSION" | grep -E '^[0-9]+\.[0-9]+\.[0-9]+$' && echo "true" || echo "false")
80+
IS_STABLE=$(echo "$VERSION" | grep -Eq '^[0-9]+\.[0-9]+\.[0-9]+$' && echo true || echo false)
8181
8282
for workspace in ${{ steps.workspaces.outputs.list }}; do
8383
echo "Publishing $workspace..."

0 commit comments

Comments
 (0)