4 Commits

Author SHA1 Message Date
d8be496216 fix: 修复路径
All checks were successful
Release / build (push) Successful in 30m33s
2026-04-23 21:40:16 +08:00
1c6bbe04f1 fix: 修正缩进
Some checks failed
Release / build (push) Failing after 1m25s
2026-04-23 21:35:58 +08:00
c7767edd4f fix: 使用阿里云 apk 镜像源 v3.20 2026-04-23 21:34:28 +08:00
cc9b2a5c76 fix: 添加阿里云镜像源 2026-04-23 21:19:49 +08:00

View File

@@ -15,13 +15,15 @@ jobs:
steps:
- name: Checkout
run: |
# 使用阿里云 apk 镜像源
echo -e 'https://mirrors.aliyun.com/alpine/v3.20/main/\nhttps://mirrors.aliyun.com/alpine/v3.20/community/' > /etc/apk/repositories
apk add git bash
git clone https://hub.gaomia.site/titor/HxClaw.git /workspace/hxclaw
cp -r /workspace/hxclaw/* /workspace/hxclaw/
cp -r /workspace/hxclaw/.* /workspace/hxclaw/ 2>/dev/null || true
- name: Download dependencies
run: go mod download
run: |
cd /workspace/hxclaw
go mod download
- name: Build
run: |
@@ -35,14 +37,20 @@ jobs:
done
- name: Checksums
run: sha256sum hxclaw-* > checksums.txt
run: |
cd /workspace/hxclaw
sha256sum hxclaw-* > checksums.txt
- name: Release
env:
GITEA_TOKEN: ${{ secrets.RELEASE_TOKEN }}
run: |
# 使用阿里云 apk 镜像源
echo -e 'https://mirrors.aliyun.com/alpine/v3.20/main/\nhttps://mirrors.aliyun.com/alpine/v3.20/community/' > /etc/apk/repositories
apk add curl jq
cd /workspace/hxclaw
TAG_NAME="${GITHUB_REF#refs/tags/}"
RELEASE_BODY=$(git tag -l --format='%(contents)' "$TAG_NAME" 2>/dev/null || git log -1 --format="%s%n%n%b" "$TAG_NAME" 2>/dev/null || echo "Release $TAG_NAME")