.goreleaser.yaml 987 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. source:
  18. #
  19. name_template: "{{ .ProjectName }}-{{ .Version }}"
  20. format: zip
  21. files:
  22. - plugin/bufexplorer.vim
  23. - doc/bufexplorer.txt
  24. - LICENSE
  25. archives:
  26. - #
  27. format: zip
  28. name_template: "{{ .ProjectName }}-{{ .Version }}"
  29. files:
  30. - plugin/bufexplorer.vim
  31. - doc/bufexplorer.txt
  32. - LICENSE
  33. checksum:
  34. name_template: 'checksums.txt'
  35. changelog:
  36. use: github-native
  37. sort: asc
  38. filters:
  39. exclude:
  40. - README
  41. release:
  42. draft: false
  43. replace_existing_draft: true