Skip to content

Commit

Permalink
Merge pull request #50 from dvdmuckle/dev
Browse files Browse the repository at this point in the history
Update action to use module vendoring
  • Loading branch information
dvdmuckle authored Mar 16, 2021
2 parents 92134a4 + 9f5b568 commit b61e1a7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -84,4 +90,5 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOARCH: amd64
GOOS: windows
EXTRA_FILES: "LICENSE"
EXTRA_FILES: "LICENSE"
GO111MODULE: "on"

0 comments on commit b61e1a7

Please sign in to comment.