Skip to content

Commit

Permalink
Merge pull request #2555 from freakboy3742/resilient-release
Browse files Browse the repository at this point in the history
Make releases resilient to failures.
  • Loading branch information
mhsmith authored May 7, 2024
2 parents bbf0bfb + 43c7ef8 commit 359589a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
# This permission is required for trusted publishing.
id-token: write
strategy:
# One element of this matrix failing should not terminate the others mid-run.
# This prevents one bad platform from stalling the publication of others.
fail-fast: false
matrix:
package:
- "toga"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ jobs:
permissions:
# This permission is required for trusted publishing.
id-token: write
continue-on-error: true
strategy:
# One element of this matrix failing should not terminate the others mid-run.
# This prevents one bad platform from stalling the publication of others.
fail-fast: false
matrix:
package:
- "toga"
Expand Down

0 comments on commit 359589a

Please sign in to comment.