File tree 1 file changed +13
-7
lines changed
1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -41,13 +41,19 @@ jobs:
41
41
run : tools/ci/build_archive.sh
42
42
env :
43
43
INSTALL_TYPE : wheel
44
- - name : Test PyPI upload
45
- uses : pypa/gh-action-pypi-publish@master
46
- with :
47
- user : __token__
48
- password : ${{ secrets.TEST_PYPI_API_TOKEN }}
49
- repository_url : https://test.pypi.org/legacy/
50
- skip_existing : true
44
+ # ## Temporary
45
+ - name : Check packages with twine
46
+ run : |
47
+ pip install twine
48
+ twine check dist/*
49
+ # ## Switch back to this if we figure out who has permissions on test.pypi.org
50
+ # - name: Test PyPI upload
51
+ # uses: pypa/gh-action-pypi-publish@master
52
+ # with:
53
+ # user: __token__
54
+ # password: ${{ secrets.TEST_PYPI_API_TOKEN }}
55
+ # repository_url: https://test.pypi.org/legacy/
56
+ # skip_existing: true
51
57
- name : Upload to PyPI (on tags)
52
58
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
53
59
uses : pypa/gh-action-pypi-publish@master
You can’t perform that action at this time.
0 commit comments