3 Commits

Author SHA1 Message Date
7c067839af feat: 添加 gitea 构建脚本
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 11m50s
2025-07-15 23:14:05 +08:00
22fd87a07a fix: 调整邮箱正则 2025-07-15 23:13:27 +08:00
1d825c97f3 feat: 调整过期时间 2025-06-19 22:45:10 +08:00
2 changed files with 70 additions and 2 deletions

View File

@@ -0,0 +1,68 @@
name: Build and Push Docker Image
on:
push:
branches:
- dev
jobs:
build-and-push:
runs-on: ubuntu-latest
env:
CGO_ENABLED: 1
steps:
- name: Checkout codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Pre Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: For act to work
run: npm -g install yarn
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'yarn'
cache-dependency-path: frontend
- name: Build Frontend
run: |
make assets
rm -rf /host/${{ gitea.workspace }} && mkdir -p /host/${{ gitea.workspace }}
cp -a . /host/${{ gitea.workspace }}/
- name: Build Yggdrasil Server
uses: crazy-max/ghaction-xgo@v2
with:
xgo_version: latest
go_version: 1.24
dest: build
prefix: yggdrasil
targets: linux/amd64,linux/arm64
v: true
x: false
race: false
ldflags: -s -w -buildid=
tags: nomsgpack sqlite mysql
trimpath: true
- name: Store Back Binaries
run: |
cp -a /host/${{ gitea.workspace }}/build/. build
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: docker.sunxinao.cn
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: docker.sunxinao.cn/gardel/yggdrasil-go:latest

View File

@@ -118,7 +118,7 @@ func (u *userServiceImpl) Register(username, password, profileName, ip string) (
} else if _, err := mojangUsernameToUUID(profileName); err == nil {
return nil, util.NewForbiddenOperationError("profileName duplicate")
}
matched, err := regexp.MatchString("^(\\w){3,}(\\.\\w+)*@(\\w){2,}((\\.\\w+)+)$", username)
matched, err := regexp.MatchString("^\\w+@(\\w){2,}((\\.\\w+)+)$", username)
if err != nil {
return nil, err
}
@@ -410,7 +410,7 @@ func (u *userServiceImpl) ProfileKey(accessToken string) (resp *ProfileKeyRespon
resp = new(ProfileKeyResponse)
now := time.Now().UTC()
resp.RefreshedAfter = now
resp.ExpiresAt = now.Add(10 * time.Minute)
resp.ExpiresAt = now.Add(90 * 24 * time.Hour)
keyPair, err := u.getProfileKey(profileId)
if err != nil {
return nil, err