We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84bacc4 commit 0b8c640Copy full SHA for 0b8c640
1 file changed
src/index.ts
@@ -113,7 +113,7 @@ async function run(): Promise<void> {
113
stdout: (data: Buffer) => {
114
const text = data.toString();
115
uploadStdout += text;
116
- core.info(text.trimEnd());
+ // Do not re-echo stdout here to avoid duplicate logs; Wrangler already prints to the console.
117
},
118
stderr: (data: Buffer) => {
119
@@ -194,7 +194,7 @@ async function run(): Promise<void> {
194
195
196
deployStdout += text;
197
198
199
200
0 commit comments