Tentative fix for deploy job flakiness
The failure described in #967 is suspected to stem from race conditions with the GH API, as described in https://github.com/softprops/action-gh-release/issues/445#issuecomment-2407940052.
This commit is contained in:
parent
8c6532ca1b
commit
fa7d3d9067
1 changed files with 4 additions and 0 deletions
4
.github/workflows/deploy.yml
vendored
4
.github/workflows/deploy.yml
vendored
|
|
@ -20,6 +20,10 @@ jobs:
|
|||
if: ${{ !github.event.repository.fork }}
|
||||
|
||||
strategy:
|
||||
# Execute one job at a time to avoid potential race conditions in the
|
||||
# GitHub release management APIs. See:
|
||||
# https://github.com/softprops/action-gh-release/issues/445#issuecomment-2407940052
|
||||
max-parallel: 1
|
||||
matrix:
|
||||
target:
|
||||
- x86_64-unknown-linux-gnu
|
||||
|
|
|
|||
Loading…
Reference in a new issue