-
-
Notifications
You must be signed in to change notification settings - Fork 91
Releasing MIBs
Oliver Gorwits edited this page Aug 17, 2023
·
6 revisions
-
Follow the Updating MIBs docs.
-
Configure git to help you release:
-
git config --global push.followTags true
(push new tags together with commits)
-
-
If you are a registered developer, you can run the Update OID Maps GitHub Action (will take about an hour), then
git pull
. -
Edit the
VERSION
file and increment the version (e.g.X.YYY
). -
Commit this change:
git add VERSION
git commit -m 'release X.YYY'
-
Tag it:
git tag -a X.YYY -m 'version X.YYY'
-
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.