We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d50bc4 commit 8510284Copy full SHA for 8510284
1 file changed
.github/workflows/release.yml
@@ -75,17 +75,17 @@ jobs:
75
cp "$src" "$dst"
76
echo "ARTIFACT_PATH=$dst" >> "$GITHUB_ENV"
77
78
- - name: Assert binary size under 30 MB
+ - name: Assert binary size under 35 MB
79
shell: bash
80
run: |
81
size=$(wc -c < "${{ env.ARTIFACT_PATH }}" | tr -d ' ')
82
- max=$((30 * 1024 * 1024))
+ max=$((35 * 1024 * 1024))
83
echo "Binary size: ${size} bytes"
84
if [ "$size" -gt "$max" ]; then
85
- echo "ERROR: Binary size ${size} exceeds 30 MB limit (${max} bytes)"
+ echo "ERROR: Binary size ${size} exceeds 35 MB limit (${max} bytes)"
86
exit 1
87
fi
88
- echo "OK: Binary size ${size} is under 30 MB limit"
+ echo "OK: Binary size ${size} is under 35 MB limit"
89
90
- name: Upload artifact
91
uses: actions/upload-artifact@v4
0 commit comments