remove temporary logic when resolving action download info (#550)

This commit is contained in:
eric sciple
2020-06-15 13:13:47 -04:00
committed by GitHub
parent 89d1418e48
commit 4e7d27a53c
2 changed files with 4 additions and 67 deletions

View File

@@ -3607,8 +3607,8 @@ runs:
{
NameWithOwner = action.NameWithOwner,
Ref = action.Ref,
TarballUrl = $"<GITHUB_API_URL>/repos/{action.NameWithOwner}/tarball/{action.Ref}",
ZipballUrl = $"<GITHUB_API_URL>/repos/{action.NameWithOwner}/zipball/{action.Ref}",
TarballUrl = $"https://api.github.com/repos/{action.NameWithOwner}/tarball/{action.Ref}",
ZipballUrl = $"https://api.github.com/repos/{action.NameWithOwner}/zipball/{action.Ref}",
};
}
return Task.FromResult(result);