.goreleaser.yaml 839 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. version: 2
  2. project_name: bufexplorer
  3. env_files:
  4. # GoReleaser requires an API token with the 'repo' scope selected to deploy
  5. # the artifacts to GitHub. You can create one here
  6. # https://github.com/settings/tokens/new.
  7. github_token: ./github_token
  8. #builds:
  9. # - skip: true
  10. #source:
  11. # name_template: '{{ .ProjectName }}-{{ .Version }}'.
  12. # format: "zip"
  13. # files:
  14. # - plugin/bufexplorer.vim
  15. # - doc/bufexplorer.txt
  16. # - LICENSE
  17. archives:
  18. - #
  19. name_template: "{{ .ProjectName }}-{{ .Version }}"
  20. format: zip
  21. files:
  22. - plugin/bufexplorer.vim
  23. - doc/bufexplorer.txt
  24. - LICENSE
  25. checksum:
  26. name_template: 'checksums.txt'
  27. changelog:
  28. use: github-native
  29. sort: asc
  30. filters:
  31. exclude:
  32. - README
  33. release:
  34. draft: false
  35. replace_existing_draft: true