Skip to content

Commit f8cef40

Browse files
committed
fix(release): build bwrap on all Linux targets
The Build bwrap step was gated on matrix.bundle == 'primary', but cometix removed the bundle matrix field. This caused bwrap to never build, making npm staging fail. Changed to gate on linux target only.
1 parent 8656440 commit f8cef40

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/rust-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,8 @@ jobs:
228228
with:
229229
target: ${{ matrix.target }}
230230

231-
- if: ${{ contains(matrix.target, 'linux') && matrix.bundle == 'primary' }}
231+
# @cometix: build bwrap on all Linux targets (upstream gates on matrix.bundle which we don't use)
232+
- if: ${{ contains(matrix.target, 'linux') }}
232233
name: Build bwrap and export digest
233234
shell: bash
234235
run: |

0 commit comments

Comments
 (0)