File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,19 +32,19 @@ jobs:
32
32
33
33
- name : Build for macOS (AMD64)
34
34
run : |
35
- GOOS=darwin GOARCH=amd64 go build -o mcp-darwin-amd64 -ldflags="-X 'main.Version=${{ env.VERSION }}'" ./...
35
+ GOOS=darwin GOARCH=amd64 go build -o mcp-darwin-amd64 -ldflags="-X 'main.Version=${{ env.VERSION }}'" .
36
36
chmod +x mcp-darwin-amd64
37
37
zip -j mcp-darwin-amd64.zip mcp-darwin-amd64
38
38
39
39
- name : Build for macOS (ARM64)
40
40
run : |
41
- GOOS=darwin GOARCH=arm64 go build -o mcp-darwin-arm64 -ldflags="-X 'main.Version=${{ env.VERSION }}'" ./...
41
+ GOOS=darwin GOARCH=arm64 go build -o mcp-darwin-arm64 -ldflags="-X 'main.Version=${{ env.VERSION }}'" .
42
42
chmod +x mcp-darwin-arm64
43
43
zip -j mcp-darwin-arm64.zip mcp-darwin-arm64
44
44
45
45
- name : Build for Linux (AMD64)
46
46
run : |
47
- GOOS=linux GOARCH=amd64 go build -o mcp-linux-amd64 -ldflags="-X 'main.Version=${{ env.VERSION }}'" ./...
47
+ GOOS=linux GOARCH=amd64 go build -o mcp-linux-amd64 -ldflags="-X 'main.Version=${{ env.VERSION }}'" .
48
48
chmod +x mcp-linux-amd64
49
49
zip -j mcp-linux-amd64.zip mcp-linux-amd64
50
50
You can’t perform that action at this time.
0 commit comments