Skip to content

Commit

Permalink
fix: use dl.deno.land for downloading binaries (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlKats committed Aug 21, 2024
1 parent ba9dcf3 commit b8a676d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function install(version) {
const zip = zipName();
const url = version.isCanary
? `https://dl.deno.land/canary/${version.version}/${zip}`
: `https://github.com/denoland/deno/releases/download/v${version.version}/${zip}`;
: `https://dl.deno.land/release/v${version.version}/${zip}`;

core.info(`Downloading Deno from ${url}.`);

Expand Down

0 comments on commit b8a676d

Please sign in to comment.