Skip to content

Commit 8d86d6a

Browse files
Merge pull request #233 from technote-space/release/v1.1.2
Release/v1.1.2
2 parents 9be69be + 1759d71 commit 8d86d6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@technote-space/github-action-helper",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Helper to filter GitHub Action.",
55
"author": {
66
"name": "Technote",

src/git-helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ export default class GitHelper {
409409
*/
410410
public getTags = async(workDir: string, options?: { quiet?: boolean; suppressOutput?: boolean }): Promise<string[]> => (await this.runCommand(workDir, {
411411
command: 'git tag',
412-
suppressOutput: options?.suppressOutput,
412+
suppressOutput: options?.suppressOutput || options?.quiet,
413413
altCommand: options?.quiet ? '' : undefined,
414414
}))[0].stdout;
415415

0 commit comments

Comments
 (0)