1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

Merge 809497f7070c1d10cba9dd3f875df275d24091fd into dev

This commit is contained in:
github-actions[bot] 2020-08-19 21:31:30 +00:00 committed by GitHub
commit 8990544b42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -271,7 +271,7 @@ def blog_add_post():
today = date.today()
d = today.strftime("%Y-%m-%d")
f = open(d + "_release_" + ver_str + ".md", "w")
f = open(d + "-release_" + ver_str + ".md", "w")
f.write(post)
f.close()
@ -303,7 +303,6 @@ def publish_master():
cmd("cd lvgl; " + pub_cmd)
cmd("cd lv_examples; " + pub_cmd)
cmd("cd lv_drivers; " + pub_cmd)
cmd("cd blog; " + pub_cmd)
pub_cmd = "git push origin latest; git push origin " + ver_str
cmd("cd docs; " + pub_cmd)