Add zip package to workflows for artifact upload
Some checks failed
Simple Build & Upload / build (push) Failing after 1m54s
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:
parent
368f484145
commit
ee47ef8b70
2 changed files with 3 additions and 3 deletions
|
|
@ -58,8 +58,8 @@ jobs:
|
||||||
echo "✅ Rust version $RUST_VERSION meets requirement (1.84.1+)"
|
echo "✅ Rust version $RUST_VERSION meets requirement (1.84.1+)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Install additional build dependencies
|
# 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
|
# Install required Rust components
|
||||||
echo "Installing Rust components..."
|
echo "Installing Rust components..."
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ jobs:
|
||||||
- name: Checkout code and setup environment
|
- name: Checkout code and setup environment
|
||||||
run: |
|
run: |
|
||||||
apt update -y
|
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
|
# Install required Rust components
|
||||||
echo "Installing Rust components..."
|
echo "Installing Rust components..."
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue