Skip to content

Commit

Permalink
Debugging 500 status code
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-aravind committed Feb 7, 2024
1 parent be41989 commit afbd095
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37514,12 +37514,13 @@ async function run() {
const group = core.getInput('group');

// Construct data payload
const today = new Date();
const data = {
artifact: artifactName,
comment: `Entities from ${pageUrl}`,
publisher: publisherUri,
group: group,
version: Date.now(),
version: today.toISOString(),
downloadUrl: downloadUrl,
downloadFile: downloadFile,
reportCallbackUrl: 'https://huginn-staging.herokuapp.com/users/1/web_requests/273/databus'
Expand Down
3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ async function run() {
const group = core.getInput('group');

// Construct data payload
const today = new Date();
const data = {
artifact: artifactName,
comment: `Entities from ${pageUrl}`,
publisher: publisherUri,
group: group,
version: Date.now(),
version: today.toISOString(),
downloadUrl: downloadUrl,
downloadFile: downloadFile,
reportCallbackUrl: 'https://huginn-staging.herokuapp.com/users/1/web_requests/273/databus'
Expand Down

0 comments on commit afbd095

Please sign in to comment.