Skip to content

Commit c02f0a5

Browse files
committed
fix: avoid issue with missing ci variables
1 parent 96492dc commit c02f0a5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,11 @@ export default async function (root: string, variables: Variables) {
9898
"scripts/clean.ts": copy(join(__dirname, "content", "clean.ts")),
9999
".github/workflows/ci.yml": mustache({
100100
sourcePath: join(__dirname, "content", "ci.yml"),
101-
variables: variables.ci,
101+
variables: {
102+
postgress: false,
103+
env_vault: false,
104+
...variables.ci,
105+
},
102106
}),
103107
".github/matchers/tap.json": copy(join(__dirname, "content", "tap.json")),
104108
};

0 commit comments

Comments
 (0)