Files
gotify/Taskfile.yml
fghwett 1be5eb5235
All checks were successful
代码更新通知 / update-server (push) Successful in 1s
添加Taskfile
2024-12-18 11:47:41 +08:00

13 lines
230 B
YAML

version: 3
tasks:
latest:
desc: 生成最新的版本
cmds:
- git tag -d "latest"
- git push origin :refs/tags/latest
- git tag -a "latest" -m "latest"
- git push origin --tags
- git push