We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90bf23f commit f629bbfCopy full SHA for f629bbf
.github/workflows/release.yml
@@ -77,7 +77,7 @@ jobs:
77
- name: Publish packages
78
run: |
79
VERSION="${{ steps.tag_version.outputs.version }}"
80
- IS_STABLE=$(echo "$VERSION" | grep -E '^[0-9]+\.[0-9]+\.[0-9]+$' && echo "true" || echo "false")
+ IS_STABLE=$(echo "$VERSION" | grep -Eq '^[0-9]+\.[0-9]+\.[0-9]+$' && echo true || echo false)
81
82
for workspace in ${{ steps.workspaces.outputs.list }}; do
83
echo "Publishing $workspace..."
0 commit comments