12 lines
343 B
TypeScript
12 lines
343 B
TypeScript
import "typings-global";
|
|
import * as plugins from "./npmci.plugins";
|
|
|
|
import {GitRepo} from "smartstring";
|
|
|
|
export let repo = new GitRepo(process.env.CI_BUILD_REPO);
|
|
export let dockerTestTag:string;
|
|
export let dockerReleaseTag:string;
|
|
|
|
export let dockerRegistry; // will be set by npmci.prepare
|
|
export let dockerImages;
|
|
export let dockerFiles; |