File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -39,10 +39,26 @@ jobs:
3939 run : python setup.py sdist bdist_wheel
4040 - name : Build binary Archive
4141 run : python setup_binary.py download_pandoc bdist_wheel
42+ - name : Upload artifacts
43+ uses : actions/upload-artifact@v3
44+ with :
45+ name : python-package-distributions
46+ path : dist/
47+
48+ publisher :
49+ needs : [builder]
50+ runs-on : ubuntu-latest
51+ steps :
52+ - name : Check out repository
53+ uses : actions/checkout@v3
54+ - name : Check out repository
55+ uses : actions/download-artifact@v3
56+ with :
57+ name : python-package-distributions
58+ path : dist/
4259 - name : Publish to PyPI
4360 uses : pypa/gh-action-pypi-publish@release/v1
4461 with :
45- skip_existing : true
4662 verbose : true
4763 user : __token__
4864 password : ${{ secrets.PYPI_API_TOKEN }}
You can’t perform that action at this time.
0 commit comments