File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 9
9
10
10
steps :
11
11
- uses : actions/checkout@v4
12
- - name : Set up Python 3.11
12
+ - name : Set up Python
13
13
uses : actions/setup-python@v5
14
14
with :
15
15
python-version : " 3.11"
16
16
- name : Install pypa/build
17
- run : python -m pip install build --user
17
+ run : python3 -m pip install build --user
18
18
- name : Build a binary wheel and a source tarball
19
- run : python -m build --sdist --wheel --outdir dist/
19
+ run : python3 -m build --sdist --wheel --outdir dist/
20
20
- name : Publish distribution 📦 to Test PyPI
21
- if : github.event_name == 'push' && ! startsWith(github.ref, 'refs/tags/')
21
+ if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
22
22
uses : pypa/gh-action-pypi-publish@release/v1
23
23
with :
24
24
password : ${{ secrets.TEST_PYPI_API_TOKEN }}
25
25
repository-url : https://test.pypi.org/legacy/
26
- skip-existing : true
26
+ skip_existing : true
27
27
- name : Publish distribution 📦 to PyPI
28
28
if : startsWith(github.ref, 'refs/tags/')
29
29
uses : pypa/gh-action-pypi-publish@release/v1
30
30
with :
31
31
password : ${{ secrets.PYPI_API_TOKEN }}
32
- skip-existing : true
You can’t perform that action at this time.
0 commit comments