File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ name: Publish
2
2
3
3
on :
4
4
push :
5
- tags :
6
- - ' *.*.*'
7
5
8
6
# Allow job to be triggered manually.
9
7
workflow_dispatch :
@@ -42,16 +40,18 @@ jobs:
42
40
- name : Publish distribution 📦 to Test PyPI
43
41
uses : pypa/gh-action-pypi-publish@release/v1
44
42
with :
45
- skip_existing : true
43
+ user : __token__
46
44
password : ${{ secrets.TEST_PYPI_TOKEN }}
47
- repository_url : https://test.pypi.org/legacy/
45
+ skip-existing : true
46
+ repository-url : https://test.pypi.org/legacy/
48
47
49
48
- name : Publish distribution 📦 to PyPI
50
49
if : startsWith(github.ref, 'refs/tags')
51
50
uses : pypa/gh-action-pypi-publish@release/v1
52
51
with :
53
- skip_existing : true
52
+ user : __token__
54
53
password : ${{ secrets.PYPI_TOKEN }}
54
+ skip-existing : true
55
55
56
56
# - name: publish-to-conda
57
57
# if: startsWith(github.ref, 'refs/tags')
You can’t perform that action at this time.
0 commit comments