File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,13 @@ jobs:
15
15
concurrency : release
16
16
steps :
17
17
- name : Checkout code
18
+ # see https://github.com/actions/checkout
18
19
uses : actions/checkout@v3
19
20
with :
20
21
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
22
25
with :
23
26
python-version : 3.9
24
27
- name : Install dependencies
29
32
- name : View poetry version
30
33
run : poetry --version
31
34
- 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
+
33
38
with :
34
39
github_token : ${{ secrets.GITHUB_TOKEN }}
35
- pypi_token : ${{ secrets.PYPI_TOKEN }}
36
-
40
+ repository_username : __token__
41
+ repository_password : ${{ secrets.PYPI_TOKEN }}
42
+ pypi_token : ${{ secrets.PYPI_TOKEN }}
You can’t perform that action at this time.
0 commit comments