We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e85c51 commit fdad944Copy full SHA for fdad944
.github/workflows/build-and-publish.yml
@@ -41,9 +41,16 @@ jobs:
41
- run: echo "value=$(ls dist/*.tar.gz | sed 's/.tar.gz//' | xargs basename)" >> $GITHUB_OUTPUT
42
id: dist_folder
43
44
- - uses: "marvinpinto/action-automatic-releases@latest"
+ - name: Publish distribution to GitHub
45
+ uses: "marvinpinto/action-automatic-releases@latest"
46
with:
47
repo_token: "${{ secrets.GITHUB_TOKEN }}"
48
files: |
49
dist/*.tar.gz
50
dist/*.whl
51
+
52
+ - name: Publish distribution to PyPI
53
+ uses: pypa/gh-action-pypi-publish@master
54
+ with:
55
+ user: __token__
56
+ password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments