Skip to content

Commit 3aa8586

Browse files
Merge pull request #339 from technote-space/release/next-v4.4.0
release: v4.4.1
2 parents d58c4d0 + 1c2e8b4 commit 3aa8586

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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": "4.4.0",
3+
"version": "4.4.1",
44
"description": "Helper for GitHub Action.",
55
"keywords": [
66
"github",

src/git-helper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,9 +300,9 @@ export default class GitHelper {
300300
await this.runCommand(workDir, {
301301
command: 'git fetch',
302302
args: ['--prune', '--no-tags', '--no-recurse-submodules', this.cloneDepth, this.getRemote(context), `+refs/heads/${branchName}:refs/remotes/${this.getRemoteName()}/${branchName}`],
303-
stderrToStdout: this.isQuiet(),
304-
altCommand: `git fetch --prune --no-recurse-submodules${this.cloneDepth} ${this.getRemoteName()} +refs/heads/${branchName}:refs/remotes/${this.getRemoteName()}/${branchName}`,
303+
altCommand: `git fetch --prune --no-tags --no-recurse-submodules${this.cloneDepth} ${this.getRemoteName()} +refs/heads/${branchName}:refs/remotes/${this.getRemoteName()}/${branchName}`,
305304
suppressError: this.shouldSuppressError(),
305+
stderrToStdout: true,
306306
});
307307
};
308308

0 commit comments

Comments
 (0)