ci: update github action

This commit is contained in:
cxfksword 2023-12-02 16:08:21 +08:00
parent 1528aa44b9
commit a1fb0e9a57
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ def main():
raise
# 追加新版本/覆盖旧版本
manifest[0]['versions'] = list(filter(lambda x: x['version'] == version, manifest[0]['versions']))
manifest[0]['versions'] = list(filter(lambda x: x['version'] != version, manifest[0]['versions']))
manifest[0]['versions'].insert(0, generate_version(filepath, version, changelog))
with open('manifest.json', 'w') as f: