diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 58424d163..00c34a7fa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,6 +64,12 @@ jobs: run: pnpm run build:vite # macOS specific steps + - name: Increase file descriptor limit (macOS) + if: matrix.platform == 'mac' + run: | + ulimit -n 10240 + echo "File descriptor limit increased to: $(ulimit -n)" + - name: Build macOS if: matrix.platform == 'mac' env: @@ -75,7 +81,9 @@ jobs: APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }} APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} - run: pnpm run package:mac + run: | + ulimit -n 10240 + pnpm run package:mac # Windows specific steps - name: Build Windows