We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 548885b + 602d922 commit 58cf5d5Copy full SHA for 58cf5d5
1 file changed
.github/workflows/python-publish.yml
@@ -3,7 +3,7 @@ name: Publish to PyPI
3
on:
4
release:
5
types: [published]
6
- workflow_dispatch: # para testar sem criar Release
+ workflow_dispatch:
7
8
permissions:
9
contents: read
@@ -36,7 +36,9 @@ jobs:
36
publish:
37
runs-on: ubuntu-latest
38
needs: build
39
-
+ permissions:
40
+ id-token: write
41
+
42
steps:
43
- name: Download artifact
44
uses: actions/download-artifact@v4
@@ -48,5 +50,4 @@ jobs:
48
50
uses: pypa/gh-action-pypi-publish@release/v1
49
51
with:
52
password: ${{ secrets.PYPI_API_TOKEN }}
- packages-dir: dist/
53
+ packages-dir: dist/
0 commit comments