We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35a01f0 commit 0086009Copy full SHA for 0086009
1 file changed
.github/workflows/_publish-code.yml
@@ -40,7 +40,7 @@ jobs:
40
# Normal versions are published to the 'latest' tag.
41
#
42
git_tag=$(git tag --sort=-v:refname | head -n 1)
43
- tag=$(echo "${git_tag}" | pcregrep -e '-(alpha|beta|rc)[0-9]?$' -o1)
+ tag=$(echo "${git_tag}" | pcregrep -e '-(alpha|beta|rc)[0-9]?$' -o1 || true)
44
if [ -n "${tag}" ]; then
45
npm_tag="${tag}"
46
else
0 commit comments