From 16d201798a920930ebf08d11916617c219cfeb05 Mon Sep 17 00:00:00 2001 From: Filipe Forattini Date: Thu, 7 Jul 2022 17:37:27 -0300 Subject: [PATCH] fix: correct path for service ymls --- .github/workflows/svc-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/svc-deploy.yml b/.github/workflows/svc-deploy.yml index fd23d718..e2313c32 100644 --- a/.github/workflows/svc-deploy.yml +++ b/.github/workflows/svc-deploy.yml @@ -334,7 +334,7 @@ jobs: DEPENDENCIES_LIST=$(if test -f ./manifests/k8s-dependencies.yml; then (cat ./manifests/k8s-dependencies.yml | yq -P '.dependencies'); else echo '' ; fi) ytt \ -f ./.pipeline/deploy/as-k8s/service.schema.yml \ - -f ./.pipeline/deploy/as-k8s/service.yml \ + -f ./.pipeline/deploy/as-k8s/service \ -f ./manifests/k8s-values.yml \ --data-value ecosystem=${{steps.deploy_setup.outputs.deploy_ecosystem}} \ --data-value organization=${{steps.deploy_setup.outputs.deploy_organization}} \