Skip to content

Commit

Permalink
Fix duplicated release literal
Browse files Browse the repository at this point in the history
  • Loading branch information
acidicMercury8 committed Oct 15, 2024
1 parent c53c7ec commit d9ad189
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async function run()
const architecture = getArchitecture().toString();
const url =
release === "latest"
? `https://github.com/ixray-team/ixray-${codebase}/releases/latest/download/ixray-${branch}-r${latestRelease}-utilities-${architecture}-release-bin.zip`
? `https://github.com/ixray-team/ixray-${codebase}/releases/latest/download/ixray-${branch}-${latestRelease}-utilities-${architecture}-release-bin.zip`
: `https://github.com/ixray-team/ixray-${codebase}/releases/download/r${release}/ixray-${branch}-r${release}-utilities-${architecture}-release-bin.zip`;
core.debug(`branch: ${branch}`);
core.debug(`architecture: ${architecture}`);
Expand Down

0 comments on commit d9ad189

Please sign in to comment.