From 46ef76952bfe90e8251bd79260432ddf2ac2f09a Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Fri, 13 Sep 2024 18:06:19 -0700 Subject: [PATCH] wip: testing --- forge/actions/install/src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge/actions/install/src/main.js b/forge/actions/install/src/main.js index 19df6e1..1447696 100644 --- a/forge/actions/install/src/main.js +++ b/forge/actions/install/src/main.js @@ -117,7 +117,7 @@ async function getVersionedAsset(octokit, version) { const assetName = getAssetName(); const releases = await getReleases(octokit); - const targetRelease = releases.find((r) => r.tag_name === `v${version}`); + const targetRelease = releases.find((r) => r.tag_name === `forge/v${version}`); if (!targetRelease) { throw new Error(`Version ${version} not found`); }