Skip to content
Oliver Gorwits edited this page Dec 31, 2017 · 6 revisions
  1. Follow the Updating MIBs docs.

  2. Configure git to help you release:

    • git config --global push.followTags true (push new tags together with commits)
  3. Edit README and increment the version (e.g. X.Y).

  4. Commit this change:

    • git add README
    • git commit -m 'release X.Y'
  5. Tag it:

    • git tag -a X.Y -m 'version X.Y'
  6. Push to git:

    • git push (may need --follow-tags if you have an old version of git)
  7. Visit https://github.com/netdisco/netdisco-mibs/releases/new

  8. Select your new tag (X.Y) from the dropdown list

  9. Enter "netdisco-mibs-X.Y" for the Release Title

  10. Click the green "Publish Release" button

  11. Visit https://github.com/netdisco/netdisco-mibs/releases/latest

  12. Download the tar.gz file

  13. Click "Edit release"

  14. Under "Attach binaries by dropping them..." click "select file" and upload the tar.gz file you just downloaded.

  15. When uploaded, change the name to be only netdisco-mibs.tar.gz

  16. Click "Update Release"

Done!

Clone this wiki locally