We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2460d5 commit 6c9dee8Copy full SHA for 6c9dee8
mount.sh
@@ -152,11 +152,11 @@ if [ "$ImgType" == "Canonical" ]; then
152
if [ "$rubik" = true ]; then
153
# Expand the image by 2GB (reduced from 10GB to fit GitHub Actions disk space)
154
echo "=== Expanding image by 2GB ==="
155
- dd if=/dev/zero bs=1M count=2048 >> "$ROOTFS_IMG"
156
- else
157
- # Expand the image by 1GB
158
- echo "=== Expanding image by 1GB ==="
159
dd if=/dev/zero bs=1M count=1024 >> "$ROOTFS_IMG"
+ else
+ # Expand the image by 512MB
+ echo "=== Expanding image by 512MB ==="
+ dd if=/dev/zero bs=1M count=512 >> "$ROOTFS_IMG"
160
fi
161
162
if [ "$rubik" != true ]; then
0 commit comments