Revert "dist"

This reverts commit bd58cbedf7.
pull/673/head
Boris Proshin 2024-10-05 15:05:45 +03:00
parent dd91755808
commit b6aaa7c9bc
2 changed files with 2 additions and 2 deletions

2
dist/index.js generated vendored
View File

@ -8012,7 +8012,7 @@ class Versioning {
static async getVersionDescription() {
const versionTags = (await this.git(['tag', '--list', '--merged', 'HEAD', '--sort=-creatordate']))
.split('\n')
.filter((tag) => new RegExp(this.grepCompatibleInputVersionRegex).test(tag));
.filter(tag => new RegExp(this.grepCompatibleInputVersionRegex).test(tag));
if (versionTags.length === 0) {
core.warning('No valid version tags found. Using fallback description.');
return this.git(['describe', '--long', '--tags', '--always', 'HEAD']);

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long