Browse Source
Merge pull request #670 from hermeznetwork/fix/remove-release-os
fix the invalid goarch build
master
Danilo Pantani
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
5 additions and
5 deletions
-
.gitignore
-
.goreleaser.yml
|
@ -1 +1,2 @@ |
|
|
bin/ |
|
|
|
|
|
|
|
|
bin/ |
|
|
|
|
|
dist/ |
|
@ -1,6 +1,7 @@ |
|
|
before: |
|
|
before: |
|
|
hooks: |
|
|
hooks: |
|
|
- go mod download |
|
|
- go mod download |
|
|
|
|
|
- make migration-pack |
|
|
|
|
|
|
|
|
builds: |
|
|
builds: |
|
|
- main: ./cli/node/main.go |
|
|
- main: ./cli/node/main.go |
|
@ -9,10 +10,8 @@ builds: |
|
|
goos: |
|
|
goos: |
|
|
- linux |
|
|
- linux |
|
|
- darwin |
|
|
- darwin |
|
|
- windows |
|
|
|
|
|
hooks: |
|
|
|
|
|
pre: make migration-pack |
|
|
|
|
|
post: make migration-clean |
|
|
|
|
|
|
|
|
goarch: |
|
|
|
|
|
- amd64 |
|
|
|
|
|
|
|
|
archives: |
|
|
archives: |
|
|
- replacements: |
|
|
- replacements: |
|
|