From 74e3140090a53824e82e9494f2860f8c9bc8fe5b Mon Sep 17 00:00:00 2001 From: joe Date: Wed, 13 Aug 2025 23:27:43 -0700 Subject: [PATCH] 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 --- .forgejo/workflows/ci.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index ef97cc7c..2bfa63cc 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -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