From b018d9aa3ba5701dd121ffab521b3580c5f4119c Mon Sep 17 00:00:00 2001 From: mym0404 Date: Sat, 30 Mar 2024 20:46:21 +0900 Subject: [PATCH] chore: chore --- tool/publish.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tool/publish.dart b/tool/publish.dart index e708965..ef7173f 100644 --- a/tool/publish.dart +++ b/tool/publish.dart @@ -23,7 +23,7 @@ void main() async { print('🎉 The version $version is valid to publish!'); - output = await Process.run('bash', ['dart', 'pub', 'publish']); + output = await Process.run('bash', ['dart', 'pub', 'publish', '-f']); if (output.exitCode == 0) { print(output.stdout); print('🎉 The version $version is published!'); @@ -32,6 +32,7 @@ void main() async { await Process.run('git', ['push', 'origin', 'v$version']); } else { print(output.stderr); + print(output.stdout); print('❌ The version $version is failed to publish'); } }