File tree Expand file tree Collapse file tree 3 files changed +14
-33
lines changed
Expand file tree Collapse file tree 3 files changed +14
-33
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # Cannot use a shared workflow to deploy to PyPI currently: https://github.com/pypi/warehouse/issues/11096
2+
13name : Deploy to PyPI
24
35on :
68
79jobs :
810 publish :
9- uses : CitrineInformatics/common-gh-actions/.github/workflows/deploy.yml@v1
10- permissions :
11- id-token : write
11+ name : Publish package to PyPI
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Check out repository code
15+ uses : actions/checkout@v4
16+ - name : Build
17+ run : python setup.py sdist bdist_wheel
18+ - name : Publish
19+ uses : pypa/gh-action-pypi-publish@release/v1
20+ with :
21+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 1- __version__ = "3.2.3 "
1+ __version__ = "3.2.4 "
You can’t perform that action at this time.
0 commit comments