fix: remove sudo from zip installation in release workflow
Some checks failed
Build & Release Plugin / release (push) Failing after 9s

This commit is contained in:
2026-02-01 01:13:22 +00:00
parent 0b9cd99fb0
commit aa4bfa33c0

View File

@@ -102,8 +102,8 @@ jobs:
id: package
run: |
if ! command -v zip >/dev/null 2>&1; then
sudo apt-get update -y
sudo apt-get install -y zip
apt-get update -y
apt-get install -y zip
fi
VERSION="${{ steps.meta.outputs.version }}"