Skip to content

Commit

Permalink
Makefile: fix regexp for release number
Browse files Browse the repository at this point in the history
  • Loading branch information
ekalinin committed Mar 3, 2024
1 parent 7d0a86b commit 84b4bbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,5 +1,5 @@
release: test lint
@git tag `grep -o -E '[0-9]\.[0-9]\.[0-9]{1,2}' gh-md-toc`
release: test
@git tag `grep -o -E '[0-9]\.[0-9]{2}\.[0-9]{1,2}' gh-md-toc`
@git push --tags origin master

test:
Expand Down

0 comments on commit 84b4bbe

Please sign in to comment.