We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8294298 commit 50d4c9eCopy full SHA for 50d4c9e
1 file changed
.github/workflows/pypi.yml
@@ -12,6 +12,7 @@ jobs:
12
url: https://pypi.org/p/dapi
13
permissions:
14
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
15
+ contents: read # Required for checkout
16
steps:
17
- uses: actions/checkout@v3
18
- uses: actions/setup-python@v4
@@ -25,3 +26,8 @@ jobs:
25
26
run: poetry build
27
- name: Publish package distributions to PyPI
28
uses: pypa/gh-action-pypi-publish@release/v1
29
+ with:
30
+ # Add retry mechanism for transient failures
31
+ retry-on-failure: true
32
+ # Enable verbose logging for debugging
33
+ verbose: true
0 commit comments