Skip to content
Oliver Gorwits edited this page Aug 17, 2023 · 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. If you are a registered developer, you can run the Update OID Maps GitHub Action (will take about an hour), then git pull.

  4. Edit the VERSION file and increment the version (e.g. X.YYY).

  5. Commit this change:

    • git add VERSION
    • git commit -m 'release X.YYY'
  6. Tag it:

    • git tag -a X.YYY -m 'version X.YYY'
  7. Push to git:

    • git push (may need --follow-tags if you have an old version of git)

Done!

It used to be that releases and uploading netdisco-mibs.tar.gz were manually done, but these are now GitHub Actions on this repo.

Clone this wiki locally