Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bokuweb committed Oct 22, 2023
1 parent dc0866c commit 16f9756
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/comment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,8 @@ ${result.newItems
.map(item => {
const filename = basename(item);
console.log(join(baseUrl, 'actual', filename));
const img = join(baseUrl, 'actual', filename) + '?raw=true';
const img = baseUrl + 'actual/' + filename + '?raw=true';
return `| ![NewItem](${img}) |`;
// https://raw.githubusercontent.com/bokuweb/reg-actions/reg/6602221723_reg/actual/sample.png
// https://raw.githubusercontent.com/bokuweb/reg-actions/reg/6602221723_reg/actual/sample.png
// return `| ![NewItem](https://github.com/bokuweb/reg-actions/blob/reg/6602242983_reg/actual/sample.png?raw=true) |`;
})
.join('\n')}
`;
Expand Down

0 comments on commit 16f9756

Please sign in to comment.