Skip to content

Commit

Permalink
Merge pull request #17 from FriedCircuits/feature/release-makefile
Browse files Browse the repository at this point in the history
Makefile for doing releases
  • Loading branch information
FriedCircuits authored Oct 24, 2022
2 parents ddc477e + e7076b5 commit 265f0ce
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 @@
ver = $(file < VERSION)

release:
git tag $(ver) -s
git push --tags
git pull
gh release create $(ver)

0 comments on commit 265f0ce

Please sign in to comment.