The ci job triggers on every push to main and every pull request; the release job triggers only on tag pushes matching v* and needs the ci job to pass first. We place the workflow under .github/workflows/ because Gitea Actions is API-compatible with GitHub Actions and discovers workflows in that directory. The release build command is GOOS=linux GOARCH=amd64 go build -o spark-mcp-linux-amd64 ./main.go, producing the Linux amd64 artifact requested for deployment. CI runs go build ./..., go vet ./..., go test ./..., and fails if gofmt -l . reports any unformatted files. Co-Authored-By: Claude <noreply@anthropic.com>