Skip to content

Commit

Permalink
ci: update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
cxfksword committed Dec 2, 2023
1 parent fe717ef commit 4cf5b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'] != f"{version}.0", manifest[0]['versions']))
manifest[0]['versions'].insert(0, generate_version(filepath, version, changelog))

with open('manifest.json', 'w') as f:
Expand Down

0 comments on commit 4cf5b24

Please sign in to comment.