修改cicd为gitea action,简化操作

This commit is contained in:
编码猿
2025-10-07 00:59:16 +08:00
parent 7fb0f60ec0
commit cb8f7a4682
12 changed files with 235 additions and 128 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 779 KiB

BIN
doc/newci.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 734 KiB

20
doc/临时命令.md Normal file
View File

@@ -0,0 +1,20 @@
# 包含 [skip actions] 的提交会跳过工作流
git commit -m "修复样式问题 [skip actions]"
```bash
# 运行自动化集群部署脚本
./docker/deploy-swarm.sh
# --- 其他命令 ---
# 删除之前的部署(可选)
docker stack rm app-product
# 查看 app-product 集群运行情况
docker stack ps app-product
# 持续观察服务副本数是否达到预期
watch docker stack services app-product
```