Skip to content

Commit

Permalink
Release process tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Feb 1, 2021
1 parent 985e797 commit dbe387b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ echo
VERSION=`cat netmiko/__init__.py | grep version | sed "s/^__version__ = \"//"`
VERSION=`echo $VERSION | sed "s/\"$//"`
PACKAGE=`echo 'netmiko-'$VERSION'.tar.gz'`
WHL_PACKAGE=`echo 'netmiko-'$VERSION'-py2.py3-none-any.whl'`
WHL_PACKAGE=`echo 'netmiko-'$VERSION'-py3-none-any.whl'`
GLOB_PACKAGE=`echo 'netmiko-'$VERSION'*'`
DIR_PACKAGE=`echo './dist/'$PACKAGE`
DIR_WHL_PACKAGE=`echo './dist/'$WHL_PACKAGE`
Expand Down
4 changes: 2 additions & 2 deletions release_process.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ $ pdoc3 --html --output-dir docs netmiko --force
# Run ./_release.sh

# Create a tag for the version
$ git tag -a v3.3.2 -m "Version 3.3.2 Release"
$ git push origin <tag_name>
git tag -a v3.3.3 -m "Version 3.3.3 Release"
git push origin v3.3.3

0 comments on commit dbe387b

Please sign in to comment.