Add zip package to workflows for artifact upload
Some checks failed
Simple Build & Upload / build (push) Failing after 1m54s

- Install zip package in both workflows
- Required for creating compressed artifacts before upload
- This should resolve the final CI/CD failure
- All other steps now working perfectly!
This commit is contained in:
robojerk 2025-08-10 00:47:55 -07:00
parent 368f484145
commit ee47ef8b70
2 changed files with 3 additions and 3 deletions

View file

@ -59,7 +59,7 @@ jobs:
fi
# Install additional build dependencies
apt install -y libssl-dev libsystemd-dev file pkg-config build-essential
apt install -y libssl-dev libsystemd-dev file pkg-config build-essential zip
# Install required Rust components
echo "Installing Rust components..."

View file

@ -21,7 +21,7 @@ jobs:
- name: Checkout code and setup environment
run: |
apt update -y
apt install -y git curl pkg-config libssl-dev libsystemd-dev build-essential file
apt install -y git curl pkg-config libssl-dev libsystemd-dev build-essential file zip
# Install required Rust components
echo "Installing Rust components..."