File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,13 @@ jobs:
1515 concurrency : release
1616 steps :
1717 - name : Checkout code
18+ # see https://github.com/actions/checkout
1819 uses : actions/checkout@v3
1920 with :
2021 fetch-depth : 0
21- - uses : actions/setup-python@v3
22+ - name : Setup python
23+ # see https://github.com/actions/setup-python
24+ uses : actions/setup-python@v3
2225 with :
2326 python-version : 3.9
2427 - name : Install dependencies
2932 - name : View poetry version
3033 run : poetry --version
3134 - name : Python Semantic Release
32- uses : relekang/python-semantic-release@master
35+ # see https://python-semantic-release.readthedocs.io/en/latest/automatic-releases/github-actions.html
36+ # see https://github.com/relekang/python-semantic-release
37+ uses : relekang/python-semantic-release@7.28.1
3338 with :
3439 github_token : ${{ secrets.GITHUB_TOKEN }}
35- pypi_token : ${{ secrets.PYPI_TOKEN }}
40+ repository_username : __token__
41+ repository_password : ${{ secrets.PYPI_TOKEN }}
42+ pypi_token : ${{ secrets.PYPI_TOKEN }}
3643
You can’t perform that action at this time.
0 commit comments