We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8caf963 commit bfac123Copy full SHA for bfac123
tool/release.py
@@ -43,11 +43,17 @@ def publish_dry_run():
43
subprocess.call('dart pub publish --dry-run', shell=True)
44
subprocess.call('mv doc docs', shell=True)
45
46
+def clean_up():
47
+ subprocess.call('flutter clean', shell=True)
48
+ subprocess.call('cd example', shell=True)
49
50
+
51
def main():
52
bump_version()
53
generate_docs()
54
add_tag()
55
publish_dry_run()
56
+ clean_up()
57
print("Congratulations! " + args.new + " is now ready to be released!")
58
59
if __name__ == '__main__':
0 commit comments