@davidspekorg/semantic-release-helm
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,8 @@ | ||
## [1.1.1](https://github.com/davidspek/semantic-release-helm/compare/v1.1.0...v1.1.1) (2024-11-25) | ||
### Bug Fixes | ||
* add helm dependency build before packaging ([44ca4f7](https://github.com/davidspek/semantic-release-helm/commit/44ca4f716d5490914eada2ad455c0e50578cb1ae)) | ||
# [1.1.0](https://github.com/davidspek/semantic-release-helm/compare/v1.0.0...v1.1.0) (2024-11-25) | ||
@@ -2,0 +9,0 @@ |
@@ -19,2 +19,3 @@ import execa from "execa"; | ||
const inferredFileName = `${name}-${version}.tgz`; | ||
await execa("helm", ["dependency", "build", chartDirectory]); | ||
await execa("helm", ["package", chartDirectory]); | ||
@@ -24,4 +25,5 @@ await execa("helm", ["push", inferredFileName, registryUrl]); | ||
async function publishChartToChartRepository(chartDirectory) { | ||
await execa("helm", ["dependency", "build", chartDirectory]); | ||
await execa("helm", ["cm-push", chartDirectory, "semantic-release-helm"]); | ||
} | ||
//# sourceMappingURL=publish.js.map |
{ | ||
"name": "@davidspekorg/semantic-release-helm", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Helm plugin for [semantic-release](https://github.com/semantic-release/semantic-release)", | ||
@@ -5,0 +5,0 @@ "type": "module", |
Sorry, the diff of this file is not supported yet
43593
418