File tree 1 file changed +10
-5
lines changed
1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
name : Publish to PyPI [Production]
2
2
on :
3
+ push :
4
+ workflow_dispatch :
3
5
release :
4
6
types : [published]
5
7
jobs :
@@ -54,11 +56,14 @@ jobs:
54
56
# Tell poetry to use the `current-version` that was found by the previous step
55
57
# -----------------------------------------------------------------------------
56
58
- 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)"
58
63
# ----------------------------------------------
59
64
# Attempt push to test-pypi
60
65
# ----------------------------------------------
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