Last active
October 21, 2019 11:21
-
-
Save J535D165/0147c9f54aa937773215e7c5aaf966ae to your computer and use it in GitHub Desktop.
Revisions
-
J535D165 revised this gist
Oct 21, 2019 . 1 changed file with 5 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,13 @@ echo "Give a new version number (without v prefix)" read version_tag # create git tag git tag -a "v${version_tag}" -m "Version ${version_tag}" git push origin --tags # reader pdf from markdown README. pandoc README.md -o README.pdf # copy all files to the releases folder mkdir -p releases rsync -av --progress . releases/release_${version_tag} --exclude releases --exclude .git -
J535D165 created this gist
Oct 21, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # create git tag git tag -a $(TAG) -m "Version $(TAG)" git push origin --tags # reader pdf from markdown README. pandoc README.md -o README.pdf # copy all files to the releases folder mkdir -p releases rsync -av --progress . releases/release_$(TAG) --exclude releases --exclude .git