From 839e23622dfa51054da0fdb4f5a1efd898a9f5d1 Mon Sep 17 00:00:00 2001 From: Aleksey Myasnikov Date: Fri, 4 Oct 2024 08:30:39 +0300 Subject: [PATCH] fix --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 03f1e4b..b81666a 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "description": "TypeScript action for performing SLO tests for YDB in k8s cluster", "main": "lib/main.js", "scripts": { - "manifests": "npx fs-to-json --input \"k8s/ci/workload.yaml\" --output src/manifests/workload.json && npx fs-to-json --input \"k8s/ci/database.yaml\" --output src/manifests/database.json && npx fs-to-json --input \"k8s/ci/storage.yaml\" --output src/manifests/storage.json", + "manifests": "ls k8s/ci/*.yaml | sed -e 's/k8s\\/ci\\///g; s/\\.yaml//g' | xargs -I NAME npx fs-to-json --input k8s/ci/NAME.yaml --output src/manifests/NAME.json", "build": "npm run manifests && tsc", "format": "prettier --write '**/*.ts'", "format-check": "prettier --check '**/*.ts'",