Skip to content

Commit

Permalink
wip: testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman committed Sep 14, 2024
1 parent 1eabe5b commit 46ef769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge/actions/install/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`);
}
Expand Down

0 comments on commit 46ef769

Please sign in to comment.