Skip to content

Commit f91f483

Browse files
authored
chore: exclude v0.0.0-fake releases from scenario tests (#18095)
2 parents 1fbc491 + 27d1898 commit f91f483

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-network-scenarios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
git fetch --tags --force
5353
tag=$(git tag --points-at "${{ github.event.workflow_run.head_sha }}" | head -n1)
54-
if echo "$tag" | grep -Eq '^v[0-9]+\.[0-9]+\.[0-9]+'; then
54+
if echo "$tag" | grep -Eq '^v[0-9]+\.[0-9]+\.[0-9]+' && ! echo "$tag" | grep -q 'fake'; then
5555
echo "should_run=true" >> $GITHUB_OUTPUT
5656
echo "Found semver tag: $tag"
5757
else

0 commit comments

Comments
 (0)