fix mac desktop signing file limit (#1222)
This commit is contained in:
@@ -188,7 +188,12 @@ jobs:
|
||||
|
||||
- name: Build desktop artifact
|
||||
shell: bash
|
||||
run: npm --prefix packages/desktop run dist -- ${{ needs.validate.outputs.electron_target }} ${MAC_BUILD_EXTRA_ARGS:-} --publish never
|
||||
run: |
|
||||
if [ "${{ needs.validate.outputs.target_os }}" = "darwin" ]; then
|
||||
ulimit -n 10240 || true
|
||||
echo "File descriptor limit: $(ulimit -n)"
|
||||
fi
|
||||
npm --prefix packages/desktop run dist -- ${{ needs.validate.outputs.electron_target }} ${MAC_BUILD_EXTRA_ARGS:-} --publish never
|
||||
|
||||
- name: Upload workflow artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
|
||||
@@ -153,7 +153,12 @@ jobs:
|
||||
|
||||
- name: Build desktop artifact
|
||||
shell: bash
|
||||
run: npm --prefix packages/desktop run dist -- ${{ matrix.electron_target }} ${MAC_BUILD_EXTRA_ARGS:-} --publish never
|
||||
run: |
|
||||
if [ "${{ matrix.target_os }}" = "darwin" ]; then
|
||||
ulimit -n 10240 || true
|
||||
echo "File descriptor limit: $(ulimit -n)"
|
||||
fi
|
||||
npm --prefix packages/desktop run dist -- ${{ matrix.electron_target }} ${MAC_BUILD_EXTRA_ARGS:-} --publish never
|
||||
|
||||
- name: Upload macOS update manifest artifact
|
||||
if: matrix.target_os == 'darwin'
|
||||
|
||||
Reference in New Issue
Block a user