fix: Use .yaml instead of .yml
This commit is contained in:
parent
1e4460913b
commit
ff30e56e98
7 changed files with 3 additions and 3 deletions
|
@ -11,6 +11,6 @@ var packageConfig = JSON.parse(packageText);
|
|||
|
||||
const {version} = packageConfig;
|
||||
|
||||
fs.writeFileSync("infrastructure/deployment.yml", dots.deployment({version: version}));
|
||||
fs.writeFileSync("infrastructure/service.yml", dots.service({version: version}));
|
||||
fs.writeFileSync("infrastructure/ingress.yml", dots.ingress({version: version}));
|
||||
fs.writeFileSync("infrastructure/deployment.yaml", dots.deployment({version: version}));
|
||||
fs.writeFileSync("infrastructure/service.yaml", dots.service({version: version}));
|
||||
fs.writeFileSync("infrastructure/ingress.yaml", dots.ingress({version: version}));
|
||||
|
|
Loading…
Reference in a new issue