We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06f2587 commit b33a85cCopy full SHA for b33a85c
.github/workflows/v10-principal-multi-env.yml
@@ -66,6 +66,11 @@ jobs:
66
steps:
67
- name: Check out code into the right branch
68
uses: actions/checkout@v4
69
+
70
+ - name: Setup Go
71
+ uses: actions/setup-go@v4
72
+ with:
73
+ go-version: '1.24.5'
74
75
- name: Login to GitHub Container Registry
76
uses: docker/login-action@v3
@@ -81,7 +86,7 @@ jobs:
81
86
82
87
echo "Building Agent..."
83
88
cd ${{ github.workspace }}/agent
84
- GOOS=linux GOARCH=amd64 go build -o utmstack_agent_service -v .
89
+ CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o utmstack_agent_service -v .
85
90
GOOS=windows GOARCH=amd64 go build -o utmstack_agent_service.exe -v .
91
GOOS=windows GOARCH=arm64 go build -o utmstack_agent_service_arm64.exe -v .
92
0 commit comments