mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-30 05:41:12 +00:00
56a854fe14
* update github.com/docker/cli * update github.com/docker/distribution * update github.com/docker/docker * update github.com/gin-gonic/gin * update github.com/golang-jwt/jwt/v4 * update github.com/golangci/golangci-lint * update github.com/gorilla/securecookie * update github.com/mattn/go-sqlite3 * update github.com/moby/moby * update github.com/prometheus/client_golang * update github.com/xanzy/go-gitlab
54 lines
1 KiB
YAML
54 lines
1 KiB
YAML
env:
|
|
- GO_VERSION=1.16
|
|
|
|
before:
|
|
hooks:
|
|
- go mod download
|
|
|
|
builds:
|
|
- main: ./cmd/mnd/main.go
|
|
binary: mnd
|
|
goos:
|
|
- windows
|
|
- darwin
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.buildTime={{.Date}}`.
|
|
|
|
archives:
|
|
- format: tar.gz
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
|
|
brews:
|
|
- name: mnd
|
|
tap:
|
|
owner: tommy-muehle
|
|
name: homebrew-tap
|
|
folder: Formula
|
|
homepage: https://github.com/tommy-muehle/go-mnd
|
|
description: Magic number detector for Go
|
|
test: |
|
|
system "#{bin}/mnd --version"
|
|
install: |
|
|
bin.install "mnd"
|
|
|
|
dockers:
|
|
-
|
|
goos: linux
|
|
goarch: amd64
|
|
image_templates:
|
|
- "tommymuehle/go-mnd:latest"
|
|
- "tommymuehle/go-mnd:{{ .Tag }}"
|
|
build_flag_templates:
|
|
- "--build-arg=GO_VERSION={{.Env.GO_VERSION}}"
|
|
extra_files:
|
|
- checks
|
|
- cmd
|
|
- config
|
|
- analyzer.go
|
|
- entrypoint.sh
|
|
- go.mod
|
|
- go.sum
|