Skip to content

Commit

Permalink
fix: is it working?
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Jun 12, 2024
1 parent 88c714e commit 627676f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30754,7 +30754,7 @@ async function setup() {
return
}
// Download the specific version of the tool, e.g. as a tarball
const pathToCLI = await tc.downloadTool(await getDownloadURL(version), undefined, token);
const pathToCLI = await tc.downloadTool(await getDownloadURL(version), undefined, `token ${token}`);

// Expose the tool by adding it to the PATH
core.addPath(pathToCLI)
Expand Down
2 changes: 1 addition & 1 deletion action/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async function setup() {
return
}
// Download the specific version of the tool, e.g. as a tarball
const pathToCLI = await tc.downloadTool(await getDownloadURL(version), undefined, token);
const pathToCLI = await tc.downloadTool(await getDownloadURL(version), undefined, `token ${token}`);

// Expose the tool by adding it to the PATH
core.addPath(pathToCLI)
Expand Down

0 comments on commit 627676f

Please sign in to comment.