Skip to content

Commit

Permalink
Be tolerant of failures getting newly published pip wheel, for 5 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
garyd203 committed Aug 23, 2023
1 parent 13aafb1 commit 7b2d2e2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,13 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
- name: Install Build wheel
run: |
pip install xraysink==${{ needs.publish.outputs.release-version }}
uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2.8.3
with:
command: |
pip install xraysink==${{ needs.publish.outputs.release-version }}
max_attempts: 10
retry_wait_seconds: 30
timeout_seconds: 15
- name: Smoke Test
shell: python
# TODO check __version__ in published file
Expand Down

0 comments on commit 7b2d2e2

Please sign in to comment.