Skip to content

Commit

Permalink
log to revert
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosu7 committed May 14, 2024
1 parent 3c234c1 commit 2e0d75d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32851,6 +32851,7 @@ async function uploadInputFile(tool, file) {
const pixeeUrl = core.getInput("pixee-api-url");
const token = await core.getIDToken(pixeeUrl);
const url = buildUploadApiUrl(tool);
core.info("Uploading file to " + url);
return axios_1.default
.put(url, form, {
headers: {
Expand Down
2 changes: 2 additions & 0 deletions src/pixee-platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ export async function uploadInputFile(tool: TOOL_PATH, file: string) {
const token = await core.getIDToken(pixeeUrl);
const url = buildUploadApiUrl(tool)

core.info("Uploading file to " + url)

return axios
.put(url, form, {
headers: {
Expand Down

0 comments on commit 2e0d75d

Please sign in to comment.