1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-23 05:53:02 +02:00

Wrote a page detailing how to publish a new ripme release

cyian-1756
2018-06-15 22:58:39 -04:00
parent dc892bdc4b
commit dde04759cf

@@ -0,0 +1,11 @@
Note: To make a new ripme release you must have write access to ripmeapp/ripme and have a github api token
Step 1: Update your local copy of ripme with `git pull origin master`
Step 2: Run patch.py. This script will prompt you for a list of changes (separated with a ;) since the last release and then update ripmes version number in a few places and append the list of changes you entered to the change log in ripme.json and commits these changes
Step 3: Run `git push origin master` to update the remote copy of ripme
Step 4: Run release.py. This script has several flags 2 of which are needed to push a new release, these being --file (the path to the jar built by patch.py in step 2, this is normally in target/.) and --token (Your github api token). This will make and publish the new release
Warning: The jar you are releasing must be in target/ or release.py will crash