From 2af2e357ff7a77eabe848dd86ffe7ac9d3a36e3a Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Fri, 1 Dec 2023 20:41:09 +0000 Subject: [PATCH] nox publish: fix post-release bump commit Fixes: c2a7bad135e0405474783768738ad87f6d9a0e6f --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 87e82327..e94c7b33 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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)