File tree Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 23
23
steps :
24
24
- name : Checkout
25
25
uses : actions/checkout@v2
26
- - name : Setup Python 3.8
26
+ - name : Setup Python
27
27
uses : actions/setup-python@v2
28
- with :
29
- python-version : 3.8
30
28
- name : Cache PyPI
31
29
uses : actions/cache@v2
32
30
with :
@@ -108,19 +106,21 @@ jobs:
108
106
steps :
109
107
- name : Checkout
110
108
uses : actions/checkout@v2
111
- - name : Setup Python 3.8
109
+ - name : Setup Python
112
110
uses : actions/setup-python@v2
113
- with :
114
- python-version : 3.8
115
111
- name : Install dependencies
116
112
run :
117
113
python -m pip install -U pip wheel twine build
118
114
- name : Make dists
119
115
run :
120
116
python -m build
121
- - name : PyPI upload
122
- env :
123
- TWINE_USERNAME : __token__
124
- TWINE_PASSWORD : ${{ secrets.PYPI_TOKEN }}
125
- run : |
126
- twine upload dist/*
117
+ - name : Make Release
118
+
119
+ with :
120
+ changes_file : CHANGES.rst
121
+ name : async-timeout
122
+ version_file : async-timeout/__init__.py
123
+ github_token : ${{ secrets.GITHUB_TOKEN }}
124
+ pypi_token : ${{ secrets.PYPI_TOKEN }}
125
+ fix_issue_regex : ' \(`#(\\d+) <https://github.com/aio-libs/async-timeout/issues/\\1>`_\)'
126
+ fix_issue_repl : " (#\\ 1)"
Original file line number Diff line number Diff line change 1
1
CHANGES
2
2
=======
3
3
4
+ .. towncrier release notes start
5
+
4
6
4.0.1 (2121-11-10)
5
7
------------------
6
8
You can’t perform that action at this time.
0 commit comments