File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 3434 env :
3535 GH_TOKEN : ${{ secrets.AUTO_PR_TOKEN }}
3636 PYPI_TOKEN : ${{ secrets.PYPI_API_TOKEN }}
37+ TWINE_USERNAME : __token__
38+ TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }}
3739 run : |
3840 git config user.name "github-actions[bot]"
3941 git config user.email "github-actions[bot]@users.noreply.github.com"
Original file line number Diff line number Diff line change @@ -34,10 +34,13 @@ packages = ["node9"]
3434[tool .semantic_release ]
3535version_toml = [" pyproject.toml:project.version" ]
3636branch = " main"
37- build_command = " pip install build && python -m build"
37+ build_command = " pip install build twine && python -m build"
3838dist_path = " dist/"
3939upload_to_pypi = true
4040upload_to_release = true
4141commit_version_number = true
4242tag_commit = true
4343hvcs = " github"
44+
45+ [tool .semantic_release .publish ]
46+ upload_to_vcs_release = true
You can’t perform that action at this time.
0 commit comments