We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 553431e + f36f397 commit 42615afCopy full SHA for 42615af
src/cmd/run.ts
@@ -531,7 +531,13 @@ const saveRepositoryMetadata = async (id: string) => {
531
};
532
533
const runWasmPlugin = async (pipeline: string, job: string[], cwd = ".") => {
534
- if (pipeline.endsWith(".wasm") || pipeline.endsWith("?wasm=1")) {
+ if (
535
+ pipeline.endsWith(".wasm") ||
536
+ pipeline.endsWith("?wasm=1") ||
537
+ pipeline.startsWith("azurecr.io/") ||
538
+ pipeline.startsWith("ghcr.io/") ||
539
+ pipeline.startsWith("gcr.io/")
540
+ ) {
541
const command = new Deno.Command("bash", {
542
args: ["-c", `fluentci-engine call -m ${pipeline} -- ` + job.join(" ")],
543
stdout: "inherit",
0 commit comments