Update app version [skip ci]

This commit is contained in:
github-action update-app-version
2026-04-30 23:01:22 +00:00
parent 02c870cd6b
commit 4c2963e5cf
7 changed files with 0 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
additionalProperties:
formFields:
- default: "/home/gitea"
edit: true
envKey: GITEA_RUNNER_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: ""
edit: true
envKey: GITEA_INSTANCE_URL
labelZh: Gitea 实例 URL
labelEn: Gitea instance URL
required: true
type: text
- default: ""
edit: true
envKey: GITEA_RUNNER_REGISTRATION_TOKEN
labelZh: 注册令牌
labelEn: Registration token
required: true
type: text
- default: ""
edit: true
envKey: GITEA_RUNNER_NAME
labelZh: Runner 名称
labelEn: Runner name
required: true
type: text
- default: ""
edit: true
envKey: GITEA_RUNNER_LABELS
labelZh: Runner 标签
labelEn: Runner labels
required: true
type: text
@@ -0,0 +1,22 @@
networks:
1panel-network:
external: true
services:
gitea:
image: gitea/act_runner:0.6.1
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
privileged: true
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
volumes:
- ${GITEA_RUNNER_ROOT_PATH}/data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai
+19
View File
@@ -0,0 +1,19 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
sed -i '/^APP_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "APP_ENV_FILE=${CURRENT_DIR}/envs/gitea.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -0,0 +1,19 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
sed -i '/^APP_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "APP_ENV_FILE=${CURRENT_DIR}/envs/gitea.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi