File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 11name : Publish to PyPI [Production]
22on :
3+ push :
4+ workflow_dispatch :
35 release :
46 types : [published]
57jobs :
@@ -54,11 +56,14 @@ jobs:
5456 # Tell poetry to use the `current-version` that was found by the previous step
5557 # -----------------------------------------------------------------------------
5658 - name : Update pyproject.toml
57- run : poetry version ${{ steps.version.outputs.current-version }}
59+ run : |
60+ echo "Current version - ${{ steps.version.outputs.current-version }}"
61+ poetry version ${{ steps.version.outputs.current-version }}
62+ echo "Updated version - $(poetry version -s)"
5863 # ----------------------------------------------
5964 # Attempt push to test-pypi
6065 # ----------------------------------------------
61- - name : Build and publish to pypi
62- 63- with :
64- pypi_token : ${{ secrets.PROD_PYPI_TOKEN }}
66+ # - name: Build and publish to pypi
67+ 68+ # with:
69+ # pypi_token: ${{ secrets.PROD_PYPI_TOKEN }}
You can’t perform that action at this time.
0 commit comments