Feature/v0 scripts (#512)

* update contributors[no ci]

* Add v0 release

* Add install.sh to keep the v0 panel functioning properly

* Modify sync.py

* Remove release-v0.yaml

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
卖女孩的小火柴
2024-12-01 21:52:38 +08:00
committed by GitHub
parent b994a52422
commit dae8f7f24e
4 changed files with 159 additions and 1 deletions

3
.github/sync.py vendored
View File

@@ -52,7 +52,10 @@ def delete_gitee_releases(latest_id, client, uri, token):
print(f'Current release ids: {release_ids}')
release_ids.remove(latest_id)
# 2024.12.01 保留 v0 开头的 Release
for id in release_ids:
if id.startswith('v0'):
continue
release_uri = f"{uri}/{id}"
delete_data = {
'access_token': token