Browse Source

Fixing git branch in tool.semantic_release

main
Ryan Reed 2 years ago
parent
commit
ca7b6c8f38
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      README.md
  2. +1
    -1
      {{cookiecutter.package_name}}/pyproject.toml

+ 1
- 1
README.md View File

@ -46,7 +46,7 @@ This will take you to a project setup asking for:
- `package_command` - This will configure poetry to allow calling the package, `package_name/console:entry_point`, via this command. Generally, this would be the same value as `package_name`
- `author_name` - The author of the package
- `author_email` - The email for the author
- `git_branch` - The branch to utilize when performing `git init -b <branch>`
- `git_branch` - The branch to utilize when performing `git init -b <branch>` and package building
- `github_repo_name` - For documentation, such as URLs to the issue tracker
- `github_user_name` - For documentation, such as URLs to the issue tracker
- `python_version`- The Python version that should be defined in `pyproject.toml`


+ 1
- 1
{{cookiecutter.package_name}}/pyproject.toml View File

@ -25,7 +25,7 @@ sphinx-autobuild = "*"
[tool.semantic_release]
version_variable = "pyproject.toml:version"
branch = "master"
branch = "{{cookiecutter.git_branch}}"
build_command = "pip install poetry && poetry build"
dist_path = "dist/"
upload_to_pypi = false


Loading…
Cancel
Save