We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec85bca + d02af66 commit 1240907Copy full SHA for 1240907
1 file changed
.github/workflows/build-test-deploy.yml
@@ -77,6 +77,17 @@ jobs:
77
env:
78
GH_TOKEN: ${{ secrets.GH_TOKEN }}
79
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
80
+ run: npx semantic-release #--dry-run
81
+
82
+ - name: Build project
83
run: |
- npx semantic-release --dry-run
- echo "Ran semantic-release dry-run"
84
+ pip install -U pip
85
+ pip install build
86
+ python -m build
87
88
+ - name: Publish to pypi
89
+ uses: pypa/gh-action-pypi-publish@release/v1
90
+ with:
91
+ user: ${{ secrets.PYPI_USER }}
92
+ password: ${{ secrets.PYPI_TOKEN }}
93
+ repository_url: https://upload.pypi.org/legacy/
0 commit comments