-
Notifications
You must be signed in to change notification settings - Fork 630
How to make a new ripme release
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