chore(build): 配置 Go 模块代理并移除工作流文件

- 在 Dockerfile 中设置默认 GOPROXY 为阿里云镜像
- 在 Makefile 中配置 GOPROXY 环境变量
- 移除 .gitea/workflows 目录下的所有 CI/CD 工作流文件
- 删除 release-nightly.yml 工作流配置
- 删除 release-tag.yml 工作流配置
- 删除 test.yml 工作流配置
This commit is contained in:
dcsunny
2026-01-30 11:35:52 +08:00
parent 90d11b8692
commit f1a473b362
5 changed files with 3 additions and 217 deletions

View File

@@ -7,7 +7,7 @@ FROM golang:1.24-alpine AS builder
RUN apk add --no-cache make git
ARG GOPROXY
ENV GOPROXY=${GOPROXY:-}
ENV GOPROXY=${GOPROXY:-https://mirrors.aliyun.com/goproxy/,direct}
COPY . /opt/src/act_runner
WORKDIR /opt/src/act_runner