autopub 1.0.0a7__tar.gz → 1.0.0a8__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: autopub
3
- Version: 1.0.0a7
3
+ Version: 1.0.0a8
4
4
  Summary: Automatic package release upon pull request merge
5
5
  Home-page: https://github.com/autopub/autopub
6
6
  License: AGPL-3.0
@@ -7,6 +7,9 @@ from autopub.plugins import AutopubPlugin
7
7
 
8
8
  class GitPlugin(AutopubPlugin):
9
9
  def post_publish(self, repository: str | None = None, **kwargs: Any) -> None:
10
+ self.run_command(["git", "config", "--global", "user.email", "autopub@autopub"])
11
+ self.run_command(["git", "config", "--global", "user.name", "autopub"])
12
+
10
13
  self.run_command(["git", "add", "."])
11
14
 
12
15
  self.run_command(["git", "commit", "-m", "🤖 autopub publish"])
@@ -3,7 +3,7 @@ requires-python = ">=3.8"
3
3
 
4
4
  [tool.poetry]
5
5
  name = "autopub"
6
- version = "1.0.0-alpha.7"
6
+ version = "1.0.0-alpha.8"
7
7
  description = "Automatic package release upon pull request merge"
8
8
  authors = ["Justin Mayer <entroP@gmail.com>", "Patrick Arminio <patrick.arminio@gmail.com>"]
9
9
  license = "AGPL-3.0"
File without changes
File without changes
File without changes
File without changes
File without changes