We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79a395b commit 9a143b6Copy full SHA for 9a143b6
1 file changed
.github/workflows/e2e-tests.yaml
@@ -54,9 +54,11 @@ jobs:
54
uses: actions/setup-go@v5
55
with:
56
go-version: "1.22"
57
-
+
58
- name: Build devspacehelper
59
run: |
60
+ export GOMODCACHE="${{ github.workspace }}/.gomodcache"
61
+ mkdir -p "$GOMODCACHE"
62
mkdir -p ~/.devspace/devspacehelper/latest
63
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-extldflags=-static" -o ~/.devspace/devspacehelper/latest/devspacehelper helper/main.go
64
chmod +x ~/.devspace/devspacehelper/latest/devspacehelper
0 commit comments