Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
chore: build dist (#956)
Browse files Browse the repository at this point in the history
Build dist PR
  • Loading branch information
google-github-actions-bot committed Mar 11, 2024
1 parent 863b06f commit 733a6d7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dist/index.js
Expand Up @@ -116713,6 +116713,7 @@ const DEFAULT_CONFIG_FILE = 'release-please-config.json';
const DEFAULT_MANIFEST_FILE = '.release-please-manifest.json';
const DEFAULT_GITHUB_API_URL = 'https://api.github.com';
const DEFAULT_GITHUB_GRAPHQL_URL = 'https://api.github.com';
const DEFAULT_GITHUB_SERVER_URL = 'https://github.com';
function parseInputs() {
const inputs = {
token: core.getInput('token', { required: true }),
Expand All @@ -116730,6 +116731,7 @@ function parseInputs() {
skipGitHubPullRequest: getOptionalBooleanInput('skip-github-pull-request'),
fork: getOptionalBooleanInput('fork'),
includeComponentInTag: getOptionalBooleanInput('include-component-in-tag'),
changelogHost: core.getInput('changelog-host') || DEFAULT_GITHUB_SERVER_URL,
};
return inputs;
}
Expand All @@ -116749,6 +116751,7 @@ function loadOrBuildManifest(github, inputs) {
return release_please_1.Manifest.fromConfig(github, github.repository.defaultBranch, {
releaseType: inputs.releaseType,
includeComponentInTag: inputs.includeComponentInTag,
changelogHost: inputs.changelogHost,
}, {
fork: inputs.fork,
}, inputs.path);
Expand Down

0 comments on commit 733a6d7

Please sign in to comment.