File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change 99jobs :
1010 publish :
1111 # This job will only run if the PR has been merged (and not closed without merging).
12- if : " github.event.pull_request.merged == true && !contains(github.event.pull_request.head.message, 'skipci')"
12+ if : " github.event.pull_request.merged == true"
13+ permissions :
14+ id-token : write
15+ contents : read
1316 runs-on : ubuntu-latest
1417 steps :
1518 - name : Checkout repository
1619 uses : actions/checkout@v3
1720
18- - name : Set up Python
19- uses : actions/setup-python@v2
20- with :
21- python-version : 3.9
21+ - name : Install Poetry
22+ 2223
23- - name : Make package
24- run : |
25- python3 -m pip install --upgrade setuptools wheel
26- python3 setup.py sdist bdist_wheel
24+ - name : Build a binary wheel and a source tarball
25+ run : poetry build
2726
2827 - name : Publish package distributions to PyPI
2928
You can’t perform that action at this time.
0 commit comments