Skip to content

Commit 8510284

Browse files
committed
Raise binary size limit from 30 MB to 35 MB
1 parent 5d50bc4 commit 8510284

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,17 @@ jobs:
7575
cp "$src" "$dst"
7676
echo "ARTIFACT_PATH=$dst" >> "$GITHUB_ENV"
7777
78-
- name: Assert binary size under 30 MB
78+
- name: Assert binary size under 35 MB
7979
shell: bash
8080
run: |
8181
size=$(wc -c < "${{ env.ARTIFACT_PATH }}" | tr -d ' ')
82-
max=$((30 * 1024 * 1024))
82+
max=$((35 * 1024 * 1024))
8383
echo "Binary size: ${size} bytes"
8484
if [ "$size" -gt "$max" ]; then
85-
echo "ERROR: Binary size ${size} exceeds 30 MB limit (${max} bytes)"
85+
echo "ERROR: Binary size ${size} exceeds 35 MB limit (${max} bytes)"
8686
exit 1
8787
fi
88-
echo "OK: Binary size ${size} is under 30 MB limit"
88+
echo "OK: Binary size ${size} is under 35 MB limit"
8989
9090
- name: Upload artifact
9191
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)