autopub 1.0.0a13__tar.gz → 1.0.0a14__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {autopub-1.0.0a13 → autopub-1.0.0a14}/PKG-INFO +1 -1
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/plugins/git.py +1 -1
- {autopub-1.0.0a13 → autopub-1.0.0a14}/pyproject.toml +1 -1
- {autopub-1.0.0a13 → autopub-1.0.0a14}/LICENSE +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/README.md +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/__init__.py +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/cli/__init__.py +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/cli/plugins.py +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/exceptions.py +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/plugins/__init__.py +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/plugins/bump_version.py +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/plugins/pdm.py +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/plugins/poetry.py +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/plugins/update_changelog.py +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/py.typed +0 -0
- {autopub-1.0.0a13 → autopub-1.0.0a14}/autopub/types.py +0 -0
@@ -18,4 +18,4 @@ class GitPlugin(AutopubPlugin):
|
|
18
18
|
self.run_command(["git", "add", "--all", "--", ":!main/.autopub"])
|
19
19
|
self.run_command(["git", "commit", "-m", "🤖 autopub publish"])
|
20
20
|
self.run_command(["git", "push"])
|
21
|
-
self.run_command(["git", "push", tag])
|
21
|
+
self.run_command(["git", "push", "origin", tag])
|
@@ -3,7 +3,7 @@ requires-python = ">=3.8"
|
|
3
3
|
|
4
4
|
[tool.poetry]
|
5
5
|
name = "autopub"
|
6
|
-
version = "1.0.0-alpha.
|
6
|
+
version = "1.0.0-alpha.14"
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|