fix: ensure zip is installed before building distribution package
Some checks failed
Build & Release Plugin / release (push) Failing after 4s

This commit is contained in:
2026-02-01 01:12:52 +00:00
parent eba8df9962
commit 0b9cd99fb0

View File

@@ -101,6 +101,11 @@ jobs:
if: steps.tagcheck.outputs.exists == 'false'
id: package
run: |
if ! command -v zip >/dev/null 2>&1; then
sudo apt-get update -y
sudo apt-get install -y zip
fi
VERSION="${{ steps.meta.outputs.version }}"
SLUG="siti-ai-product-content-generator"
BUILD_ROOT="$RUNNER_TEMP/build"