初始化 XXXig 打包部署脚本与 CI 流水线
Build and Release / build-and-test (amd64, ubuntu) (push) Successful in 1m12s
Build and Release / build-and-test (amd64, alpine) (push) Successful in 1m21s
Build and Release / build-and-test (arm64, ubuntu) (push) Successful in 5m24s
Build and Release / build-and-test (arm64, alpine) (push) Successful in 6m8s
Build and Release / release (push) Has been skipped

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-09 11:28:03 +08:00
co-authored by Claude Opus 4.8
commit 28bc2116fd
16 changed files with 1787 additions and 0 deletions
Vendored Executable
+19
View File
@@ -0,0 +1,19 @@
#!/bin/sh
set -e
# 仅在卸载(remove)时停用服务;升级(upgrade)时保持运行与开机自启状态
if [ "$1" = "remove" ] && [ -d /run/systemd/system ]; then
for service in xxxig-server.service xxxig-daemon.service; do
if systemctl is-active --quiet "$service"; then
echo "Stopping $service..."
systemctl stop "$service"
fi
if systemctl is-enabled --quiet "$service"; then
echo "Disabling $service..."
systemctl disable "$service"
fi
done
fi
exit 0