Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ jobs:
contents: write # Upload installers to GitHub Releases
strategy:
fail-fast: false
# Serialize the OS legs: both run `electron-builder --publish always`, and publishing
# concurrently let each leg create its own GitHub release for the same tag (a race that
# split the v1.1.2 assets across two releases). max-parallel: 1 makes the second leg find
# and upload to the release the first leg already created.
max-parallel: 1
matrix:
os: [windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
Expand Down
Loading