Skip to content

Commit

Permalink
add makefile, cmds for making a zip file with all pattern files, and …
Browse files Browse the repository at this point in the history
…submitting a release on github
  • Loading branch information
sckott committed Oct 6, 2020
1 parent 25e2310 commit 84bb575
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
TAG := $(shell git describe --tags)

zip:
find src | egrep '\.(json)$$' | zip -@ pubpatterns.zip

release:
gh release create ${TAG} 'pubpatterns.zip' -t 'pubpatterns ${TAG}'

0 comments on commit 84bb575

Please sign in to comment.