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 470b636 commit 22e6812Copy full SHA for 22e6812
.github/workflows/v11-principal-installer-release.yml
@@ -59,11 +59,21 @@ jobs:
59
go-version: ^1.20
60
id: go
61
62
+ - name: Configure git for private modules
63
+ run: |
64
+ git config --global url."https://${{ secrets.API_SECRET }}:[email protected]/".insteadOf "https://github.com/"
65
+ echo "GOPRIVATE=github.com/utmstack" >> $GITHUB_ENV
66
+ echo "GONOPROXY=github.com/utmstack" >> $GITHUB_ENV
67
+ echo "GONOSUMDB=github.com/utmstack" >> $GITHUB_ENV
68
+
69
- name: Build
70
working-directory: ./installer
71
env:
72
GOOS: linux
73
GOARCH: amd64
74
+ GOPRIVATE: github.com/utmstack
75
+ GONOPROXY: github.com/utmstack
76
+ GONOSUMDB: github.com/utmstack
77
run: |
78
echo "Building Installer..."
79
go build -o installer -v -ldflags "\
0 commit comments