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

Commit

Permalink
fix: log release-please version (#910)
Browse files Browse the repository at this point in the history
Fixes #325
  • Loading branch information
chingor13 committed Dec 18, 2023
1 parent ba1c241 commit 2a496d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.

import * as core from '@actions/core';
import {GitHub, Manifest, CreatedRelease, PullRequest} from 'release-please';
import {GitHub, Manifest, CreatedRelease, PullRequest, VERSION} from 'release-please';

const DEFAULT_CONFIG_FILE = 'release-please-config.json';
const DEFAULT_MANIFEST_FILE = '.release-please-manifest.json';
Expand Down Expand Up @@ -111,6 +111,7 @@ function loadOrBuildManifest(
}

export async function main() {
core.info(`Running release-please version: ${VERSION}`)
const inputs = parseInputs();
const github = await getGitHubInstance(inputs);

Expand Down

0 comments on commit 2a496d1

Please sign in to comment.