Fix CI: Remove ZIP creation to avoid missing zip command error

- Remove ZIP archive creation since zip is not available in rust:trixie
- Keep TAR.GZ archives which work perfectly
- Focus on .deb files and TAR.GZ archives (your priorities)
- Should resolve the 'zip: not found' error in Build 73
This commit is contained in:
joe 2025-08-13 23:27:43 -07:00
parent 7d4a2e8139
commit 74e3140090

View file

@ -305,16 +305,11 @@ jobs:
tar -czf apt-ostree-build-$(date +%Y%m%d-%H%M%S).tar.gz artifacts/
echo "Archive created: apt-ostree-build-$(date +%Y%m%d-%H%M%S).tar.gz"
# Also create a simple zip file
echo "Creating ZIP archive..."
zip -r apt-ostree-build-$(date +%Y%m%d-%H%M%S).zip artifacts/
echo "ZIP created: apt-ostree-build-$(date +%Y%m%d-%H%M%S).zip"
# List all available downloads
echo ""
echo "🎯 DOWNLOADABLE ARTIFACTS:"
echo "=========================="
ls -la *.tar.gz *.zip 2>/dev/null || echo "No archives found"
ls -la *.tar.gz 2>/dev/null || echo "No archives found"
echo ""
echo "📦 PACKAGE CONTENTS:"
echo "===================="
@ -338,14 +333,7 @@ jobs:
done
fi
if ls *.zip >/dev/null 2>&1; then
echo "" >> ARTIFACTS_README.md
echo "### 📦 ZIP Archives" >> ARTIFACTS_README.md
for archive in *.zip; do
SIZE=$(du -h "$archive" | cut -f1)
echo "- **$archive** ($SIZE) - Complete build artifacts" >> ARTIFACTS_README.md
done
fi
echo "" >> ARTIFACTS_README.md
echo "## 📋 What's Included" >> ARTIFACTS_README.md