Skip to content

Commit

Permalink
Fix wrong path to post action
Browse files Browse the repository at this point in the history
  • Loading branch information
gmichelo committed Jan 26, 2024
1 parent c4130d0 commit 3b40b74
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ outputs:
runs:
using: "node20"
main: "dist/index/index.js"
post: "dist/post/post.js"
post: "dist/post/index.js"
branding:
icon: "archive"
color: "gray-dark"
4 changes: 3 additions & 1 deletion dist/post/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@
/************************************************************************/
var __webpack_exports__ = {};
void main();
async function main() { }
async function main() {
console.log("Hello, TODO IMPLEMENT");
}

4 changes: 3 additions & 1 deletion src/post.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
void main();

async function main() {}
async function main() {
console.log("Hello, TODO IMPLEMENT");
}

0 comments on commit 3b40b74

Please sign in to comment.