Skip to content

Commit

Permalink
nox publish: fix post-release bump commit (#565)
Browse files Browse the repository at this point in the history
Fixes: c2a7bad
  • Loading branch information
gotmax23 committed Dec 1, 2023
1 parent fbd6ba2 commit 3be85bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -395,7 +395,7 @@ def publish(session: nox.Session):
install(session, "hatch")
session.run("hatch", "publish", *session.posargs)
session.run("hatch", "version", "post")
session.run("git", "add", "pyproject.toml", external=True)
session.run("git", "add", "src/antsibull/__init__.py", external=True)
session.run("git", "commit", "-m", "Post-release version bump.", external=True)


Expand Down

0 comments on commit 3be85bc

Please sign in to comment.