fix: remove sudo from zip installation in release workflow
Some checks failed
Build & Release Plugin / release (push) Failing after 9s
Some checks failed
Build & Release Plugin / release (push) Failing after 9s
This commit is contained in:
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@@ -102,8 +102,8 @@ jobs:
|
|||||||
id: package
|
id: package
|
||||||
run: |
|
run: |
|
||||||
if ! command -v zip >/dev/null 2>&1; then
|
if ! command -v zip >/dev/null 2>&1; then
|
||||||
sudo apt-get update -y
|
apt-get update -y
|
||||||
sudo apt-get install -y zip
|
apt-get install -y zip
|
||||||
fi
|
fi
|
||||||
|
|
||||||
VERSION="${{ steps.meta.outputs.version }}"
|
VERSION="${{ steps.meta.outputs.version }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user