Github Actions make ENOET error on worker

Hello
I’m integrating mediasoup into a project that I have, it works with yarn and electron, and the build is made with GitHub actions, in the developer env it works all great, the problem is when trying and install the build it appears the enoet error of the worker binary, the path that appears is C:\Program Files\worker\out\Release\mediasoup-worker, I think this is the path of the github action vm, so anybody knows how could I fix the GitHub action so the path take it from the build? If it is a problem with the requirements how can I make the wizard of the build install those requirements?
Also this happen for all the SO no matter is one I specify in the action
These is the log of the GitHub action
➤ YN0007: │ mediasoup@npm:3.13.24 must be built because it never has been before or the last one failed
85
➤ YN0000: │ mediasoup@npm:3.13.24 STDOUT npm-scripts.mjs [INFO] [postinstall]
101 ➤ YN0000: │ mediasoup@npm:3.13.24 STDOUT npm-scripts.mjs [INFO] [postinstall] downloadPrebuiltWorker() [tarUrl:https://github.com/versatica/mediasoup/releases/download/3.13.24/mediasoup-worker-3.13.24-win32-x64.tgz]
102 ➤ YN0000: │ mediasoup@npm:3.13.24 STDOUT npm-scripts.mjs [INFO] [postinstall] ensureDir() [dir:worker/prebuild]
105 ➤ YN0000: │ mediasoup@npm:3.13.24 STDOUT npm-scripts.mjs [INFO] [postinstall] ensureDir() [dir:worker/out/Release]
107 ➤ YN0000: │ mediasoup@npm:3.13.24 STDOUT npm-scripts.mjs [INFO] [postinstall] downloadPrebuiltWorker() | got mediasoup-worker prebuilt binary
108 ➤ YN0000: │ mediasoup@npm:3.13.24 STDOUT npm-scripts.mjs [INFO] [postinstall] downloadPrebuiltWorker() | checking fetched mediasoup-worker prebuilt binary in current host
112 ➤ YN0000: │ mediasoup@npm:3.13.24 STDOUT npm-scripts.mjs [INFO] [postinstall] downloadPrebuiltWorker() | fetched mediasoup-worker prebuilt binary is valid for current host

The problem was with electron that it didnt take to the dist file so what i do was declare as native the dependecie on the webpack.config

How did you declared the dependency as being Native?