Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2025-12-09 04:54:15 +00:00
parent 88fb7bd753
commit 4d8353af3e
34 changed files with 267 additions and 10 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
#!/bin/sh
DEFAULT_PORT=16601
PORT_FILE="/goodluck/port"
PORT_FILE="/app/conf/port"
WAIT_SECONDS=30
if [ -f "$PORT_FILE" ]; then
@@ -12,7 +12,7 @@ else
echo "No previous port found, using default port: ${DETECT_PORT}"
fi
/app/lucky -c /goodluck/lucky.conf -runInDocker &
/app/lucky -c /app/conf/lucky.conf -runInDocker &
MAIN_PID=$!
echo "Lucky main started with PID $MAIN_PID"