This commit is contained in:
Minsu Lee
2019-10-16 20:00:43 +09:00
parent bcc10a1fc4
commit 9b0078ee2f
2 changed files with 4 additions and 4 deletions

4
dist/index.js vendored
View File

@@ -9376,7 +9376,7 @@ async function run() {
}
} = await zeitAPIClient.get("/v4/now/deployments", {
params: {
"meta-commit": process.env.GITHUB_SHA
"meta-commit": context.sha
}
});
@@ -9390,7 +9390,7 @@ async function run() {
}
} = await zeitAPIClient.get("/v4/now/deployments", {
params: {
"meta-branch": process.env.GITHUB_REF
"meta-branch": context.ref
}
});

View File

@@ -39,7 +39,7 @@ async function run() {
}
} = await zeitAPIClient.get("/v4/now/deployments", {
params: {
"meta-commit": process.env.GITHUB_SHA
"meta-commit": context.sha
}
});
@@ -53,7 +53,7 @@ async function run() {
}
} = await zeitAPIClient.get("/v4/now/deployments", {
params: {
"meta-branch": process.env.GITHUB_REF
"meta-branch": context.ref
}
});