We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a45f3b6 commit 62a2b22Copy full SHA for 62a2b22
1 file changed
src/index.ts
@@ -30,8 +30,8 @@ function getDestinationDirectory(
30
): string {
31
return path.join(
32
storageDirectory,
33
- slug.owner,
34
- slug.repository,
+ slug.owner.toLowerCase(),
+ slug.repository.toLowerCase(),
35
tag,
36
`${platform}-${architecture}`
37
);
@@ -69,8 +69,8 @@ async function installGitHubReleaseBinary(
69
// so upstream updates are always pulled in.
70
const cachePaths = [destinationFilename];
71
const cacheKey = [
72
- targetBinary.slug.owner,
73
- targetBinary.slug.repository,
+ targetBinary.slug.owner.toLowerCase(),
+ targetBinary.slug.repository.toLowerCase(),
74
releaseTag,
75
targetTriple,
76
].join("-");
0 commit comments