Skip to content

Commit

Permalink
fix(action): fix listen to 0.0.0.0 (#1025)
Browse files Browse the repository at this point in the history
  • Loading branch information
spacedragon authored Nov 8, 2024
1 parent 1bd85ba commit 52ce2c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/action/src/action-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class ActionPlugin extends Plugin {
return 'OK'
})

this.server.listen({ port }, (err, address) => {
this.server.listen({ host: '0.0.0.0', port }, (err, address) => {
if (err) {
console.error(err)
process.exit(1)
Expand Down

0 comments on commit 52ce2c0

Please sign in to comment.