Skip to content

Commit

Permalink
Merge pull request #1861 from wasmerio/fix/relesae-tag-regex
Browse files Browse the repository at this point in the history
Fix typo in release tag checking regex
  • Loading branch information
MarkMcCaskey authored Dec 2, 2020
2 parents f0a2860 + b3f69bf commit 71c0d34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: |
VERSION=${GITHUB_REF/refs\/tags\//}
echo ::set-output name=VERSION::${VERSION}
DOING_RELEASE=$(echo $VERSION | grep -c '^[0-9]\+\.[0-9]\+\.[0-9]\+\(-\([a-zA-Z]\+\)?[0-9]*\)\?$' || true)
DOING_RELEASE=$(echo $VERSION | grep -c '^[0-9]\+\.[0-9]\+\.[0-9]\+\(-\([a-zA-Z]\+\)\?[0-9]*\)\?$' || true)
echo ::set-output name=DOING_RELEASE::${DOING_RELEASE}
echo $VERSION
echo $DOING_RELEASE
Expand Down

0 comments on commit 71c0d34

Please sign in to comment.