From 5392b37a8753ccf2846ba6924256c1602ff72cd1 Mon Sep 17 00:00:00 2001 From: Darren Kelly Date: Wed, 12 Jun 2024 16:48:35 +0100 Subject: [PATCH] fix: run yarn build --- action/dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action/dist/index.js b/action/dist/index.js index 900be15..89daf30 100644 --- a/action/dist/index.js +++ b/action/dist/index.js @@ -30699,7 +30699,7 @@ async function getDownloadURL(version) { const arch = process.arch; core.info(`Platform: ${platform}, Arch: ${arch}`) - const url = `https://github.com/vechain/networkhub/releases/download/${version}/networkHub-${platform}-${arch}${platform === 'win32' ? '.exe' : ''}`; + const url = `https://github.com/vechain/networkhub/releases/download/${version}/network-hub-${platform}-${arch}${platform === 'win32' ? '.exe' : ''}`; core.info(`Download URL: ${url}`) return url; }