Skip to content

Commit d97f4e3

Browse files
committed
Update
[ghstack-poisoned]
1 parent dd25bd0 commit d97f4e3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

scripts/release/download-experimental-build-ghaction.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ async function getWorkflowRunId(commit) {
6969
`curl -L ${GITHUB_HEADERS} https://api.github.com/repos/${OWNER}/${REPO}/actions/workflows/${getWorkflowId()}/runs?head_sha=${commit}&branch=main&exclude_pull_requests=true`
7070
);
7171

72-
console.log(res);
7372
const json = JSON.parse(res.stdout);
7473
let workflowRun;
7574
if (json.total_count === 1) {
@@ -95,7 +94,6 @@ async function getArtifact(workflowRunId, artifactName) {
9594
`curl -L ${GITHUB_HEADERS} https://api.github.com/repos/${OWNER}/${REPO}/actions/runs/${workflowRunId}/artifacts?per_page=100&name=${artifactName}`
9695
);
9796

98-
console.log(res);
9997
const json = JSON.parse(res.stdout);
10098
let artifact;
10199
if (json.total_count === 1) {

0 commit comments

Comments
 (0)