fix: ensure zip is installed before building distribution package
Some checks failed
Build & Release Plugin / release (push) Failing after 4s
Some checks failed
Build & Release Plugin / release (push) Failing after 4s
This commit is contained in:
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
@@ -101,6 +101,11 @@ jobs:
|
|||||||
if: steps.tagcheck.outputs.exists == 'false'
|
if: steps.tagcheck.outputs.exists == 'false'
|
||||||
id: package
|
id: package
|
||||||
run: |
|
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 }}"
|
VERSION="${{ steps.meta.outputs.version }}"
|
||||||
SLUG="siti-ai-product-content-generator"
|
SLUG="siti-ai-product-content-generator"
|
||||||
BUILD_ROOT="$RUNNER_TEMP/build"
|
BUILD_ROOT="$RUNNER_TEMP/build"
|
||||||
|
|||||||
Reference in New Issue
Block a user