之前用 jq -n --arg 拼 JSON payload, 依赖 runner 镜像预装 jq.
Gitea act_runner 镜像可以自定义 (alpine / distroless / 极简
ubuntu), 不一定带 jq. 一旦缺, release 通知 step 静默失败
(curl 仍然发但 payload 是空字符串, Bark 端按 400/500 处理),
release 仍然成功上传但 user 收不到通知.
改用 heredoc 直接展开 shell 变量拼 JSON:
PAYLOAD=$(cat <<EOF
{ "device_key": "...", "title": "${TITLE}", ... }
EOF
)
TITLE (tag 名, 形如 v0.0.1-beta) 和 BODY (release URL, 只含
https URL + tag 字符串) 都没有 ", \, 控制字符, heredoc 展开
安全. 不需要 jq 转义.
这一步跟 release upload 串行 (release job 本身顺序 steps), Bark
通知仍然是 release 成功的最后一步, if: success() 保留.
Co-Authored-By: Claude <noreply@anthropic.com>
100 lines
2.9 KiB
YAML
100 lines
2.9 KiB
YAML
# This workflow runs on Gitea Actions, which is API-compatible with GitHub Actions.
|
|
# It performs CI on every push to main and every pull request, and automatically
|
|
# builds and attaches a Linux amd64 release binary when a version tag (v*) is pushed.
|
|
#
|
|
# Go is installed manually from a Chinese mirror (NJU) instead of using
|
|
# actions/setup-go, because the runner is in a region where the official Go
|
|
# download endpoint is slow. GOPROXY is set to goproxy.cn for the same reason.
|
|
name: CI / Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
tags:
|
|
- 'v*'
|
|
pull_request:
|
|
|
|
jobs:
|
|
ci:
|
|
name: CI
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Go (Mirror in China)
|
|
run: |
|
|
if [ ! -d "/usr/local/go" ]; then
|
|
wget https://mirrors.nju.edu.cn/golang/go1.25.5.linux-amd64.tar.gz
|
|
sudo tar -C /usr/local -xzf go1.25.5.linux-amd64.tar.gz
|
|
rm go1.25.5.linux-amd64.tar.gz
|
|
fi
|
|
echo "/usr/local/go/bin" >> $GITHUB_PATH
|
|
echo "GOPROXY=https://goproxy.cn/,https://goproxy.io,direct" >> $GITHUB_ENV
|
|
|
|
- name: Build
|
|
run: go build ./...
|
|
|
|
- name: Vet
|
|
run: go vet ./...
|
|
|
|
- name: Test
|
|
run: go test ./...
|
|
|
|
- name: Check formatting
|
|
run: |
|
|
if [ -n "$(gofmt -l .)" ]; then
|
|
gofmt -l .
|
|
exit 1
|
|
fi
|
|
|
|
release:
|
|
name: Release
|
|
needs: ci
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Go (Mirror in China)
|
|
run: |
|
|
if [ ! -d "/usr/local/go" ]; then
|
|
wget https://mirrors.nju.edu.cn/golang/go1.25.5.linux-amd64.tar.gz
|
|
sudo tar -C /usr/local -xzf go1.25.5.linux-amd64.tar.gz
|
|
rm go1.25.5.linux-amd64.tar.gz
|
|
fi
|
|
echo "/usr/local/go/bin" >> $GITHUB_PATH
|
|
echo "GOPROXY=https://goproxy.cn/,https://goproxy.io,direct" >> $GITHUB_ENV
|
|
|
|
- name: Build release binary
|
|
run: GOOS=linux GOARCH=amd64 go build -o spark-mcp-linux-amd64 ./main.go
|
|
|
|
- name: Upload release asset
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: spark-mcp-linux-amd64
|
|
generate_release_notes: true
|
|
|
|
- name: Notify release via Bark
|
|
if: success()
|
|
run: |
|
|
TITLE="${{ github.ref_name }}"
|
|
BODY="spark-mcp ${TITLE} released: ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/releases/tag/${TITLE}"
|
|
PAYLOAD=$(cat <<EOF
|
|
{
|
|
"device_key": "6ZFVsxM95cuAjYoNLWSWaN",
|
|
"title": "${TITLE}",
|
|
"body": "${BODY}",
|
|
"group": "backup",
|
|
"isArchive": 1,
|
|
"ttl": 3600
|
|
}
|
|
EOF
|
|
)
|
|
curl -s \
|
|
-X POST http://101.43.40.124:81/push \
|
|
-H "Content-Type: application/json; charset=utf-8" \
|
|
-d "${PAYLOAD}"
|