diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 9533204..9c6f14a 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -13,6 +13,7 @@ jobs: GOARCH: "386" GOOS: linux EXTRA_FILES: "LICENSE" + GO111MODULE: "on" release-linux-amd64: name: release linux/amd64 runs-on: ubuntu-latest @@ -25,6 +26,7 @@ jobs: GOARCH: amd64 GOOS: linux EXTRA_FILES: "LICENSE" + GO111MODULE: "on" release-linux-arm: name: release linux/386 runs-on: ubuntu-latest @@ -37,6 +39,7 @@ jobs: GOARCH: "arm" GOOS: linux EXTRA_FILES: "LICENSE" + GO111MODULE: "on" release-linux-arm64: name: release linux/amd64 runs-on: ubuntu-latest @@ -49,6 +52,7 @@ jobs: GOARCH: arm64 GOOS: linux EXTRA_FILES: "LICENSE" + GO111MODULE: "on" release-darwin-amd64: name: release darwin/amd64 runs-on: ubuntu-latest @@ -61,6 +65,7 @@ jobs: GOARCH: amd64 GOOS: darwin EXTRA_FILES: "LICENSE" + GO111MODULE: "on" release-windows-386: name: release windows/386 runs-on: ubuntu-latest @@ -73,6 +78,7 @@ jobs: GOARCH: "386" GOOS: windows EXTRA_FILES: "LICENSE" + GO111MODULE: "on" release-windows-amd64: name: release windows/amd64 runs-on: ubuntu-latest @@ -84,4 +90,5 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOARCH: amd64 GOOS: windows - EXTRA_FILES: "LICENSE" \ No newline at end of file + EXTRA_FILES: "LICENSE" + GO111MODULE: "on" \ No newline at end of file