File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1
1
name : CD
2
2
3
3
on :
4
- # push:
5
- # branches: [ master ]
6
- # tags: [ '*' ]
7
-
8
4
push :
9
5
branches : [ master ]
10
- pull_request :
6
+ tags : [ '*' ]
11
7
12
8
jobs :
13
9
CD :
31
27
--sdist
32
28
--wheel
33
29
--outdir dist/
34
- - name : Publish distribution 📦 to Test PyPI
30
+ - name : Publish a Python distribution to PyPI
35
31
uses : pypa/gh-action-pypi-publish@release/v1
36
32
with :
37
- password : ${{ secrets.TEST_PYPI_API_TOKEN }}
38
- repository_url : https://test.pypi.org/legacy/
33
+ user : __token__
34
+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 22
22
python-version : ${{ matrix.python_ver }}
23
23
- name : Install dependencies
24
24
run : |
25
- python -m pip install --upgrade poetry
25
+ python -m pip install --upgrade poetry wheel
26
26
poetry install --remove-untracked
27
27
- name : Lint with flake8
28
28
run : |
Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ classifiers = [
20
20
" Programming Language :: Python :: 3.8" ,
21
21
" Programming Language :: Python :: 3.9" ,
22
22
" Programming Language :: Python :: 3.10" ,
23
+ " Programming Language :: Python :: Implementation" ,
24
+ " Programming Language :: Python :: Implementation :: CPython" ,
25
+ " Programming Language :: Python :: Implementation :: PyPy" ,
23
26
" Topic :: Software Development :: Libraries :: Python Modules" ,
24
27
" Topic :: Software Development :: Quality Assurance" ,
25
28
]
You can’t perform that action at this time.
0 commit comments