pull/113/head
Hunter Johnston 1 year ago
parent ceb555a6ed
commit 2ea4b5da20

@ -22107,10 +22107,9 @@ try {
};
const githubBranch = import_process.env.GITHUB_HEAD_REF || import_process.env.GITHUB_REF_NAME;
const createGitHubDeployment = async (octokit, productionEnvironment, environment) => {
console.log("creating github deployment");
console.log("context repo owner", import_github.context.repo.owner);
console.log("context repo repo", import_github.context.repo.repo);
console.log("context sha", import_github.context.sha);
console.log("--------");
console.log("github context", JSON.stringify(import_github.context, null, 2));
console.log("--------");
const deployment = await octokit.rest.repos.createDeployment({
owner: import_github.context.repo.owner,
repo: import_github.context.repo.repo,

@ -63,10 +63,9 @@ try {
const githubBranch = env.GITHUB_HEAD_REF || env.GITHUB_REF_NAME;
const createGitHubDeployment = async (octokit: Octokit, productionEnvironment: boolean, environment: string) => {
console.log("creating github deployment");
console.log("context repo owner", context.repo.owner);
console.log("context repo repo", context.repo.repo);
console.log("context sha", context.sha);
console.log("--------");
console.log("github context", JSON.stringify(context, null, 2));
console.log("--------");
const deployment = await octokit.rest.repos.createDeployment({
owner: context.repo.owner,
repo: context.repo.repo,

Loading…
Cancel
Save