Browse Source
Fixing goreleaser syntax error (#3355)
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
master
Dave Henderson
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
26 additions and
9 deletions
-
.github/workflows/ci.yml
-
.goreleaser.yml
|
|
@ -133,3 +133,15 @@ jobs: |
|
|
|
# uses: docker://reviewdog/action-golangci-lint:v1 # pre-build docker image |
|
|
|
with: |
|
|
|
github_token: ${{ secrets.github_token }} |
|
|
|
|
|
|
|
goreleaser-check: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- name: checkout |
|
|
|
uses: actions/checkout@v2 |
|
|
|
- uses: goreleaser/goreleaser-action@v1 |
|
|
|
with: |
|
|
|
version: latest |
|
|
|
args: check |
|
|
|
env: |
|
|
|
TAG: ${{ steps.vars.outputs.version_tag }} |
|
|
|
|
|
@ -34,13 +34,18 @@ builds: |
|
|
|
ignore: |
|
|
|
- goos: darwin |
|
|
|
goarch: arm |
|
|
|
- goarch: |
|
|
|
- ppc64le |
|
|
|
- s390x |
|
|
|
goos: |
|
|
|
- darwin |
|
|
|
- windows |
|
|
|
- freebsd |
|
|
|
- goos: darwin |
|
|
|
goarch: ppc64le |
|
|
|
- goos: darwin |
|
|
|
goarch: s390x |
|
|
|
- goos: windows |
|
|
|
goarch: ppc64le |
|
|
|
- goos: windows |
|
|
|
goarch: s390x |
|
|
|
- goos: freebsd |
|
|
|
goarch: ppc64le |
|
|
|
- goos: freebsd |
|
|
|
goarch: s390x |
|
|
|
flags: |
|
|
|
- -trimpath |
|
|
|
ldflags: |
|
|
|