We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e3ab1b commit 71c802fCopy full SHA for 71c802f
.github/workflows/ci.yml
@@ -45,6 +45,13 @@ jobs:
45
runs-on: ${{ matrix.os }}
46
steps:
47
- uses: actions/checkout@v4
48
+ - name: update GOCACHE vars
49
+ if: runner.os == 'Windows'
50
+ run: |
51
+ echo "GOCACHE: D:\gocache" >> "$GITHUB_ENV"
52
+ echo "GOMODCACHE: D:\gomodcache" >> "$GITHUB_ENV"
53
+ echo "GOTMPDIR: D:\gotmp" >> "$GITHUB_ENV"
54
+ mkdir D:\gotmp
55
- uses: actions/setup-go@v5
56
with:
57
go-version-file: go.mod
0 commit comments