mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2025-12-27 13:08:17 +00:00
WIP
This commit is contained in:
parent
bef7d40703
commit
2e895833f6
1 changed files with 2 additions and 0 deletions
|
|
@ -7,6 +7,7 @@ import { DebugManager } from './DebugManager';
|
|||
import * as core from '@actions/core';
|
||||
export async function runAction(configurationProvider: ConfigurationProvider): Promise<VersionResult> {
|
||||
|
||||
core.info("VAGO STARTING runAction");
|
||||
const currentCommitResolver = configurationProvider.GetCurrentCommitResolver();
|
||||
const lastReleaseResolver = configurationProvider.GetLastReleaseResolver();
|
||||
const commitsProvider = configurationProvider.GetCommitsProvider();
|
||||
|
|
@ -39,6 +40,7 @@ export async function runAction(configurationProvider: ConfigurationProvider): P
|
|||
);
|
||||
}
|
||||
|
||||
core.info("VAGO REPO IS NOT EMPTY, continuing with versioning");
|
||||
const currentCommit = await currentCommitResolver.ResolveAsync();
|
||||
core.info("VAGO CURRENT COMMIT: " + currentCommit);
|
||||
const lastRelease = await lastReleaseResolver.ResolveAsync(currentCommit, tagFormatter);
|
||||
|
|
|
|||
Loading…
Reference in a new issue