修复脚本执行错误
Some checks failed
Compile / build (x64, ubuntu-latest) (push) Failing after 15s
Compile / build (x64, windows-latest) (push) Failing after 21s

This commit is contained in:
远野千束 2024-10-05 23:01:17 +08:00
parent 5c089873ca
commit 87418edeea
2 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ echo "venv created successfully"
# install the required packages
echo "Installing the required packages"
$python_exe -m pip install pdm -i https://pypi.tuna.tsinghua.edu.cn/simple
$python_exe -m pip install pdm -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
$python_exe -m pdm install
# create the systemd service

View File

@ -31,5 +31,5 @@ tag_filter = "v*"
tag_regex = '^v(?:\D*)?(?P<version>([1-9][0-9]*!)?(0|[1-9][0-9]*)(\.(0|[1-9][0-9]*))*((a|b|c|rc)(0|[1-9][0-9]*))?(\.post(0|[1-9][0-9]*))?(\.dev(0|[1-9][0-9]*))?$)$'
[[tool.pdm.source]]
name = "tuna"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
name = "pypi"
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"