Skip to content

Commit

Permalink
update dist for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
afujiwara-roblox committed Mar 5, 2024
1 parent 5cc7243 commit fabf091
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42217,10 +42217,13 @@ function run() {
const versionReq = (0, core_1.getInput)("version");
const githubToken = (0, core_1.getInput)("token");
const workingDir = (0, core_1.getInput)("working-directory");
const githubApiUrl = (0, core_1.getInput)("github-api-url");
const allowExternalGithubOrgs = (0, core_1.getInput)("allow-external-github-orgs").toLowerCase();
const artifactoryUrl = (0, core_1.getInput)("artifactory-url");
const artifactoryToken = (0, core_1.getInput)("artifactory-token");
const octokit = new github_1.GitHub(githubToken);
const octokit = new github_1.GitHub(githubToken, {
baseUrl: githubApiUrl
});
const releases = yield foreman_1.default.getReleases(octokit);
const validReleases = foreman_1.default.filterValidReleases(releases);
(0, core_1.debug)("Choosing release from GitHub API");
Expand Down

0 comments on commit fabf091

Please sign in to comment.