Skip to content

Commit

Permalink
send rg to pub data api
Browse files Browse the repository at this point in the history
  • Loading branch information
wkelly17 committed Jan 23, 2025
1 parent 0c82c30 commit ef3694d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions actions/sendToApi/send.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,9 @@ async function process() {

const response = await fetch(LOGIN_URL, options);
const data = await response.json();
console.log(data);
const apiAccessToken = data.access_token;
const apiUrl = core.getInput("api-url");
console.log(`Sending ${arrOfObj.length} files to pub data api`);
console.log(`Sending ${arrOfObj} files to pub data api`);
const res = await fetch(`${apiUrl}/contentWithRendering`, {
method: "POST",
headers: {
Expand Down

0 comments on commit ef3694d

Please sign in to comment.