diff --git a/.goreleaser.yml b/.goreleaser.yml deleted file mode 100644 index 4d04f25..0000000 --- a/.goreleaser.yml +++ /dev/null @@ -1,80 +0,0 @@ -# This is an example .goreleaser.yml file with some sensible defaults. -# Make sure to check the documentation at https://goreleaser.com -project_name: lingonweb - -dist: bin - -before: - hooks: - - go mod tidy - -gomod: - proxy: true - env: - - GOPROXY=https://proxy.golang.org,direct - -builds: - # check results of yaml anchors - # with https://yaml-online-parser.appspot.com/ - - id: kygo - binary: kygo - main: ./cmd/kygo/cli.go - goos: - - linux - - darwin - goarch: - - amd64 - - arm64 - # ensures mod timestamp to be the commit timestamp - mod_timestamp: '{{ .CommitTimestamp }}' - env: - - CGO_ENABLED=0 - - GO111MODULE=on - - GOPROXY=https://proxy.golang.org,direct - flags: - - -trimpath - ldflags: - - > - -s -w - -extldflags "-static" - -X main.version={{ .Version }} - -X main.commit={{ .Commit }} - -X main.date={{ .Date }} - -X main.builtBy=goreleaser - - -archives: - - id: kygo - rlcp: true - files: - - readme.md - - LICENSE - format: tar.gz - name_template: "{{ .Binary }}_{{ .Os }}_{{ .Arch }}_{{ .ShortCommit }}" - builds: - - kygo - -checksum: - name_template: 'checksums.txt' - -sboms: - - artifacts: archive - - id: source # Two different sbom configurations need two different IDs - artifacts: source - -snapshot: - name_template: "{{ incpatch .Version }}-next" - -changelog: - sort: asc - filters: - exclude: - - '^[Dd]ocs:' - - '^[Tt]est:' - - '^testdata:' - - -# The lines beneath this are called `modelines`. See `:help modeline` -# Feel free to remove those if you don't want/use them. -# yaml-language-server: $schema=https://goreleaser.com/static/schema.json -# vim: set ts=2 sw=2 tw=0 fo=cnqoj \ No newline at end of file