From 7bb09618851891d64b320c4651c545e097d8479d Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 25 Jun 2023 05:12:57 -0400 Subject: [PATCH] fix: don't let presetter try to parse the file --- src/index.ts | 2 +- templates/{ci.yml => ci.yml.raw} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename templates/{ci.yml => ci.yml.raw} (100%) diff --git a/src/index.ts b/src/index.ts index 9e4f9c2..441622c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,7 +19,7 @@ export default async function (): Promise { return { extends: ["presetter-preset-strict"], template: { - ".github/workflows/ci.yml": resolve(TEMPLATES, "ci.yml"), + ".github/workflows/ci.yml": resolve(TEMPLATES, "ci.yml.raw"), ".releaserc.json": resolve(TEMPLATES, ".releaserc.json"), }, noSymlinks: [".github/workflows/ci.yml"], diff --git a/templates/ci.yml b/templates/ci.yml.raw similarity index 100% rename from templates/ci.yml rename to templates/ci.yml.raw