fix: Use .yaml instead of .yml

This commit is contained in:
Robert Prehn 2021-01-16 10:01:57 -06:00
parent 1e4460913b
commit ff30e56e98
7 changed files with 3 additions and 3 deletions

View file

@ -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}));