Skip to content

Commit 12f716f

Browse files
authored
Fixes #25: Add deno-bundle.js and deno-templates into .helmignore (#26)
1 parent 9d21b2c commit 12f716f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/deno/render-chart.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,13 @@ export async function renderDenoChart(
176176
path.join(chartPath, `rendered-deno-templates.yaml`),
177177
templates
178178
)
179+
180+
const helmIgnoreContent = ["deno-bundle.js", "deno-templates/"]
181+
await Deno.writeTextFile(
182+
path.join(chartPath, `.helmignore`),
183+
helmIgnoreContent.join("\n"),
184+
{
185+
append: true,
186+
}
187+
)
179188
}

0 commit comments

Comments
 (0)