github.com/replicatedcom/ship@v0.50.0/deploy/.goreleaser.unstable.yml (about)

     1  project_name: ship
     2  release:
     3    github:
     4      owner: replicatedhq
     5      name: ship
     6  builds:
     7  - goos:
     8    - linux
     9    - windows
    10    - darwin
    11    goarch:
    12    - amd64
    13    - "386"
    14    env:
    15     - CGO_ENABLED=0
    16    main: cmd/ship/main.go
    17    ldflags: -s -w 
    18      -X github.com/replicatedhq/ship/pkg/version.version={{.Version}}
    19      -X github.com/replicatedhq/ship/pkg/version.gitSHA={{.FullCommit}}
    20      -X github.com/replicatedhq/ship/pkg/version.buildTime={{.Date}}
    21      -X github.com/replicatedhq/ship/pkg/version.helm=v2.14.1
    22      -X github.com/replicatedhq/ship/pkg/version.kustomize=v2.0.3
    23      -X github.com/replicatedhq/ship/pkg/version.terraform=v0.11.14
    24      -extldflags "-static"
    25    flags: -tags netgo -installsuffix netgo
    26    binary: ship
    27    hooks: {}
    28  archives:
    29  - id: zip
    30    format: tar.gz
    31    name_template: '{{ .Binary }}_{{.Version}}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{.Arm }}{{ end }}-alpha'
    32    files:
    33    - licence*
    34    - LICENCE*
    35    - license*
    36    - LICENSE*
    37    - readme*
    38    - README*
    39    - changelog*
    40    - CHANGELOG*
    41  dockers:
    42    - dockerfile: deploy/Dockerfile
    43      image_templates:
    44      - "replicated/ship:alpha"
    45      - "replicated/ship:alpha-slim"
    46  snapshot:
    47    name_template: SNAPSHOT-{{ .Commit }}